View .NET or CIL stack while debugging Visual Studio 2010?

I am trying to debug an assembly that was compiled in Release mode, so all the “good things” like local variables are optimized.

As a second approach, I would like to see the CIL and .NET stack, but I do not have such an option in Visual Studio 2010 - I only have the disassembly, case and type of memory, which is one level lower.

Is there a way to debug CIL in Visual Studio 2010?

This is .NET 3.5 SP1, if that matters.

+3
source share
1 answer

.NET, IL. JIT , . IL, .

, , , , - "" "". , , CPU. x86 ( x64) # , , . , , , ebp .

+3

Source: https://habr.com/ru/post/1767618/


All Articles