The question pretty much explains what I want to do. I have several projects in c# which constitute the solution and I want to view the values of static variables at runtime in visual studio. Is there a way to do that?
Debug -> Windows -> Immediate -> type code to access your members:
[>] MyClass.MyStaticValue [ENTER]
Or put them in Watch window.
Notes:
global::
prefix if your class not found by just providing namespace (global::MyClass.MyStaticValue
).