dotnet/roslyn
Hovering over cast evaluates property value in debugger
Aperta
#33.252 aperta il 8 feb 2019
Area-InteractiveBugInteractive-Debugginghelp wanted
Metriche repository
- Star
- (20.414 stelle)
- Metriche merge PR
- (Merge medio 6g 17h) (256 PR mergiate in 30 g)
Descrizione
Version Used: Visual Studio 2019 Preview 2
🔗 Originally filed as https://devdiv.visualstudio.com/DevDiv/_workitems/edit/233955
Steps to Reproduce:
-
Create a new WPF application
-
In the main window constructor, add the following:
BooleanToVisibilityConverter converter = new BooleanToVisibilityConverter(); Visibility x = (Visibility)converter.Convert(true, null, null, null); -
Set a breakpoint on one of the lines above
-
When the breakpoint is hit, hover over the
(Visibility)type cast
Expected Behavior:
Quick Info is not shown (default behavior for hovering over a type while debugging).
Actual Behavior:
Quick Info shows the value of this.Visibility (default behavior for hovering over a property while debugging).