views:

261

answers:

3

What does it mean? I am debugging C# code.

+1  A: 

Have look in the options (Tools -> Options, Environment / Font and Colors). However, switching though the display Items, I cannot see anything configured with light gray background which could be relevant for debugging.

Thomas Freudenberg
@Anton: he gave a suggestion of a way to find out, which is often more useful (teach a man to fish etc) than just being told the answer!
Vicky
+2  A: 

Grey lines are statements which are on the call stack, including other threads' call stacks. In other words, statements which started, but have not yet finished executing, are greyed. Try clicking on various functions listed in the call stack + switching to other threads and clicking.

Anton Tykhyy
I think this is the right answer i am looking for.
malay
+6  A: 
280Z28