Thursday, 19 February 2015

DebuggerHidden attribute To Hide Method From Debugging

When ever you want to hide a method from debugging than you have to using this Attribute

To use this attribute you have to use Namespace: using System.Diagnostics;







When I run, CallMethod1 is called and when I Press F11 the control directly goes to CallMethod2instead of CallMethod1, Because the Method is Hidden(DebuggerHidden)

No comments:

Post a Comment