dotnet/roslyn

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

Aperta

#29.950 aperta il 17 set 2018

 (3 commenti) (0 reazioni) (0 assegnatari)C# (4257 fork)batch import
Area-InteractiveFeature RequestInteractive-DebuggingLanguage-VBhelp wanted

Metriche repository

Star
 (20.414 stelle)
Metriche merge PR
 (Merge medio 6g 17h) (256 PR mergiate in 30 g)

Descrizione

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.

Guida contributor