dotnet/roslyn

Consider showing variable values on hovering referred members within VB WITH statement

開放

#29,950 建立於 2018年9月17日

 (3 則留言) (0 個反應) (0 位負責人)C# (4,257 個分叉)batch import
Area-InteractiveFeature RequestInteractive-DebuggingLanguage-VBhelp wanted

倉庫指標

星標
 (20,414 顆星)
PR 合併指標
 (平均合併 6天 17小時) (30 天內合併 256 個 PR)

描述

Stop in debugging on the following code:

    Dim a = New Class1()
        a.Property1 = 5
        a.PublicField = 7

     With a
            .Property1 = a.PublicField ' stop here
            .PublicField = 6
        End With

It displays member values on hovering over a, a.PublicField. However, it does not display values on hovering over .PublicField or Property1. It maybe helpful to display value there as well.

貢獻者指南