dotnet/roslyn

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

Open

#29,950 opened on Sep 17, 2018

View on GitHub
 (3 comments) (0 reactions) (0 assignees)C# (4,257 forks)batch import
Area-InteractiveFeature RequestInteractive-DebuggingLanguage-VBhelp wanted

Repository metrics

Stars
 (20,414 stars)
PR merge metrics
 (Avg merge 6d 17h) (256 merged PRs in 30d)

Description

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.

Contributor guide