Link to home
Start Free TrialLog in
Avatar of xRalf
xRalf

asked on

Carefull debugging in detail

Hello,

Is there some settings in Visual Studio 2005 enabling debugging in detail? For example I'd like to go into .NET methods when I press F11 (step into).

I remember sometimes I programmed in C++ under VS 2003 and it was possible to step into methods really deep.

thanks
ASKER CERTIFIED SOLUTION
Avatar of prakash2007
prakash2007
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of xRalf
xRalf

ASKER

But how is it possible, that Red Gate's .NET reflector will show the internals of methods?
Red Gate's .NET reflector is a decompiler. Meaning it decompiles Intermediate languge.

It does'nt give you the source code(i.e the logic). It gives you the type, the methord names, class names etc. thats all. IlDasm(which comes along with VS) does the same job. you dont need an extra tool for that.