Is there any way to, while debugging a .NET assembly, locate the assembly containing the type definition for a variable seen in the Autos, Locals, or Watch windows? For example (and this is just for example purposes, obviously), if I see a variable in the Watch window whose Type column says System.Type
, is there a way for me to have Visual Studio tell me that System.Type
is defined in the mscorlib
assembly?
Edit: I don't need to be able to do this from the Watch window (though that would be nice!), just from somewhere within Visual Studio.
Damien_The_Unbeliever's comment led me to a solution: Executing
typeof(<type>)
in the Immediate window will spit out the string representation of the result, which contains everything I need!For example: