views:

78

answers:

1

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));
+6  A: 

Yes, you can use DebuggerStepThroughAttribute.

See this link, 5-very-useful-c-attributes

Paul Rowland
+1, these small productivity hints are really useful
Daniel Dolz