When debugging in Visual Studio and you want to step into a procedure for example, but you dont want to step into the parameter methods.
Is there a way to do this?
var a = StepIntoSomething(getSomeValueDontStepIn(1),getSomeValueDontStepIn(2));
When debugging in Visual Studio and you want to step into a procedure for example, but you dont want to step into the parameter methods.
Is there a way to do this?
var a = StepIntoSomething(getSomeValueDontStepIn(1),getSomeValueDontStepIn(2));
Yes, you can use DebuggerStepThroughAttribute.
See this link, 5-very-useful-c-attributes