dotnet/roslyn
Consider showing variable values on hovering referred members within VB WITH statement
開放
#29,950 建立於 2018年9月17日
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.