Debugging the Debugger?

Tonight I ran across a small problem with the C# debugger, or rather the Command Window in VS.NET.  While stepping through my application (more to come for this) to determine where a slowness was occuring while reading the registry, I tried several different commands in the Command Window.  When doing so, I think I've found a bug in how it interprets commands.

I input:

regKey.GetValue(keyValue, "").ToString()

and what I received was:

error: 'regKey.GetValue(key, "".ToString' does not exist

Its quite obvious it couldn't parse what it interpreted, only because ITS WRONG!  Anyone have any ideas?

No Comments