dotnet/roslyn

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

オープン

#29,950 opened on 2018/09/17

 (3 件のコメント) (0 件のリアクション) (0 人の担当者)C# (4,257 件のフォーク)batch import
Area-InteractiveFeature RequestInteractive-DebuggingLanguage-VBhelp wanted

Repository metrics

Stars
 (20,414 個のスター)
PR merge metrics
 (平均マージ 6d 17h) (30d で 256 merged PRs)

説明

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.

コントリビューターガイド