This question already has answers here:
Visual Studio debugger - Displaying integer values in Hex
(7 answers)
Closed 2 years ago.
Image
Anyone else faced the same issue. Eveything was okay and now VS19 last version shows me this for list Count. Please don't give attention to the names I'm trying to fixed that from hour and a half.
There is an option in the context menu when you right click the value in the watch window called "Hexadecimal display" - try turning it off
Related
This question already has answers here:
Disable Visual Studio 2015 extra debug option
(5 answers)
Closed 6 years ago.
So whenever I try and run any WPF application in Visual Studio 2015, this black box thingy appears:
Here's what the icons say:
How do I get rid of it?
Thanks.
You're looking at the UI Debugger, which lets you do similar things as Snoop, which is also an excellent tool that has saved me a lot of trouble in the past.
That being said, you have two options to disable it:
Detach the debugger, or run without debugging
See the answers in this post
This question already has answers here:
Why does the Visual Studio editor show dots in blank spaces?
(11 answers)
Closed 7 years ago.
As the pic .
How can I delete the dots? I have reset to the default setting of VS, but doesn`t work.
Edit | Advanced | View Whitespace
Ctrl+R, Ctrl+W
I believe this is what you may be looking for
Go to:
Edit->Advanced->View White Space (CTRL+E,S)
This question already has answers here:
How can I show a message box with details in WinForms?
(6 answers)
Closed 7 years ago.
Is there a way to have a Messagebox show at first the Error Description, and then if an Expand button is pressed, show a further error description? Maybe to show the exact error which .NET gives.
Here is example of WPF Common TaskDialog
Follow above link it might be helpful to you...
This question already has answers here:
Black dash / line on visual studio 2012 left margin
(2 answers)
Closed 7 years ago.
Somehow, one of the lines in my source code became marked with a black arrow-shaped icon pointing to the right. I'm familiar with bookmarks and breakpoints, but I can't find a clue about this one. It is the top-most icon in the screenshot below.
What is the purpose of this symbol?
That icon indicates that the line is a Find Result from the last time you did a "Find In Files."
This question already has answers here:
Get question mark instead property name and value in Debug Mode in Visual Studio
(9 answers)
Closed 5 years ago.
I am using windows 7 x64.
I happens to notice this problem yesterday.
In the code, I have a array of type int and size 500, or anything actually and X > 14
I am using a for loop to put number into that array. And, I set a debug break point at the end of the loop to look at the element in the array.
But, only the 0-14 elements of the array show has number and the rest show question marks?
However, if I were to print the array, I can see values in all of them.
I am using the Visual Studio 2012 Express mode.
I set debug mode to be Any CPU. I tried x64 and x86 also, but I have the same problem.
Do you know what is the problem?
This is a (silly) bug in Visual Studio that's caused when you scroll through the debug view of the list with your mouse. To "remedy" it, use/click the down arrow at the bottom of the menu instead of using the mouse to scroll.
EDIT
See this for a similar/same issue