Using the .NET CLR, is there a way to prevent a certain method to show up in the stack trace? Especially I just want to remove the last call from the stack trace before throwing an exception.

I'm just curious, unsafe calls and reflection hacks are valid solutions.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

If it's your Exception implementation, you can override StackTrace to return whatever you like. And the this constructor of the StackFrame class makes it easy to create a stack trace whilst skipping any number of methods.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.