I have a dead simple one-liner method that I don't want to see in the stack trace: is that possible? maybe mark it with an attribute?

Just to clarify, I'm not trying to print the trace, or rethrow, or have auto step-through in the debugger. I'd like the method to not show up in the trace in the first place, because the trace is then handled by some third-party code. I want control at runtime, I'm not interested about debugging. I'm saying this because most of what I've read on StackTrace seem to be about these topics.

link|improve this question
If it is a simple one-liner then it is automatic. The JIT optimizer will inline it. But not while you've got the debugger attached. – Hans Passant Apr 21 '10 at 13:08
Hans, see my comment to Steven's answer. – benblo Apr 22 '10 at 11:14
Don't forget to flag your favorite answer ;-) – Steven Jun 22 '10 at 11:27
feedback

1 Answer

This can only be done when your method is inlined. Either the JIT does it, or you do it yourself (change the code). The JIT however, is pretty conservative about inlining methods and practically only does that when the method is very small, or when the method is used in a loop.

link|improve this answer
Hm... to be honest I doubt it: even if it's inlined wouldn't the StackTrace keep track somehow? And, it doesn't check out in practice since my method is there, both in debug and release, and it's only a one-line wrapper. – benblo Apr 22 '10 at 11:13
No. When a method is inlined, it is really gone. There is no method invocation therefore, a stack walk will not reveal it. Because a stack trace is built using a stack walk, the stack trace will not show your method anymore. – Steven Apr 22 '10 at 12:25
feedback

Your Answer

 
or
required, but never shown

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