Spurious Global tooltips
Enter this in a new VB.NET program query:
Sub Main Dim t = New Other t.User = NameOf(UserQuery.Other).Length End Sub ' Define other methods and classes here Class Other Public User As Integer End ClassHovering over
Other
(anywhere) shows Global.Other
, when it is clearly UserQuery.Other
as you can even see just by hovering over New
, the Other
variable t
or the Other
field User
.
Comments