dotnet/roslyn
Consider showing variable values on hovering referred members within VB WITH statement
Aberta
#29.950 aberto em 17 de set. de 2018
Area-InteractiveFeature RequestInteractive-DebuggingLanguage-VBhelp wanted
Métricas do repositório
- Stars
- (20.414 estrelas)
- Métricas de merge de PR
- (Mesclagem média 6d 17h) (256 fundiu PRs em 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.