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.