I am very familiar with WinDbg windows debugger and I like to list symbols (global variables) and all memory content.
How do I do that in Visual Studio debugger when debugging a .NET application. What if I want to see the contents of ServiceProvider or some global dependency injection container during runtime?
I have breakpoint in runtime but I can only see local variables and values and have no clue how to check container object.
Thanks