Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
134 views

Watch window stopped accepting some usings

I am using the debugger to step through my code. The code file I’m in has usings at the top, including for example using System.Linq; In Visual Studio 2008 this used to apply to the Watch window ...
1
vote
2answers
104 views

Is there an equivalent of $exception for return values

In the Visual Studio watch window you can put $exception and get details of the current exception, but is there an equivalent for the methods return value?
1
vote
0answers
67 views

What does it mean when square brackets appear around a class name in the VS 2008 IDE?

In my watch window in VS2008, I'm looking at an IEnumerable<classX>. Expanding the IEnumerable, some elements are shown with a Value of {classX}. Others appear with a Value of {[classX]}. What's ...
1
vote
3answers
201 views

Is there a way to use Visual Studio's Watch Window in my own App?

I have a basic messaging application that takes requests from clients and returns them response objects. When I encounter a malformed request object I serialize it to a database log for failed ...
1
vote
0answers
276 views

Watch windows not updating correctly when debugging C++/CLI 2D arrays

I'm debugging a C++/CLI assembly. In the assembly, I have a 2D managed array declared like this: array<char, 2> ^classifications; I have four variables I'm using to access positions in the ...
0
votes
0answers
42 views

Debugger and Intellitrace show truncated text in text viewer for long SqlCommand.CommandText

I'm trying to find out what the text is of a select statement made against SQL Server using Entity Framework. The CommandText property under both IntelliTrace and the debugger truncate the text to ...
0
votes
1answer
88 views

VS2010, column width of watch window

I can't see values of variables in my Watch window. I can see the variable names. I believe it's because the column width for variable name column is very wide. This problem exists for all watch ...