vote up 1 vote down star
1

For example:

Class A
{
  M1()
  {
    B.M2();
  }
}

class B
{
  public static M2()
  {
    // I need some code here to find out the name of the method that called this method,   preferably the name of the declared type of the calling method also.
  }
}
flag

57% accept rate
6  
Thinking you need to achieve something like this is often a good sign of a flaw in the design of an application. It may be better to look back at the design and see if you can fix that first. But, as can be the case, this is not always strictly true. Why do you need to do this? – Jon Cram Aug 10 at 12:08
Duplicate: stackoverflow.com/questions/615940/… – Fredrik Mörk Aug 10 at 12:08
@Jon: I've never done it myself, though I've come close a couple of times. It can be a useful technique when trying to make sense of a steaming pile that has just landed on your plate. – Greg D Aug 10 at 12:26
The debugger knows how to do this - why does anyone else need to know how? – John Saunders Aug 11 at 1:22
For a Logging framework – Binder Aug 11 at 12:49

6 Answers

vote up 6 vote down check

You can try:

using System.Diagnostics;

StackTrace stackTrace = new StackTrace();
Console.WriteLine(stackTrace.GetFrame(1).GetMethod().Name);
link|flag
thanks ! it works just fine. – Binder Aug 10 at 12:31
+1: cool, didn't know that – Juri Aug 10 at 12:33
vote up 1 vote down

Hi,

I think you are looking for:

using System.Diagnostics;

StackTrace stackTrace = new StackTrace();
stackTrace.GetFrame(1).GetMethod().Name;
link|flag
vote up 0 vote down

You can do this by displaying the call stack. This will find the entire call stack, not just the calling method though.


void displaycallstack() {
 byte[] b;
 StackFrame sf;
 MemoryStream ms = new MemoryStream();
 String s = Process.GetCurrentProcess().ProcessName;
 Console.Out.WriteLine(s + " Call Stack");
 StackTrace st = new StackTrace();
 for(int a = 0;a < st.FrameCount;a++) {
  sf = st.GetFrame(a);
  s = sf.ToString();
  b = Encoding.ASCII.GetBytes(s);
  ms.Write(b,0,b.Length); 
 }
 ms.WriteTo(System.Console.OpenStandardOutput()); }

link|flag
Whau, that is probably the most interesting way I have ever seen anyone write to the console :-) – Jørn Schou-Rode Aug 10 at 12:14
That looks like complicator code... thedailywtf.com/Articles/… – Greg D Aug 10 at 12:22
Jorn, after looking at the code a little more closely.. I'd have to agree. It was just taken from an example on how to display the stack trace. I'll have to find better examples next time :) – daed Aug 10 at 12:45
vote up 0 vote down

Check the System.Diagnostics.Trace class, but as far as I know - there is performance price when using it

link|flag
vote up 0 vote down

Thanks for the response guys, just one more thing, any idea how much of a performance hit would be incurred, any numbers? thanks in adv.

link|flag
I don't have any numbers, but for sure reflection is a performance killer. It allows to do really cool things, but is not really suggested for performance aware systems. – Juri Aug 10 at 12:35
Not just the reflection, but generating the stack trace is also going to be a performance hit. – Nate Aug 10 at 12:45
The performance question concerns me. A technique like this should probably be used for diagnostic purposes only, unless you're writing some sort of instrumentation library. – Greg D Aug 10 at 12:49
This is a very bad idea. The people who answered you did not do you any favors. – John Saunders Aug 11 at 1:23
Hi John, can you please explain why would you say such a thing? – Binder Aug 11 at 11:32
vote up 0 vote down

Better not to use StackFrame, becouse there are some .NET security issues - if code not fully trusted expression "new StackFrame()" will throw security exception.

To get current method use MethodBase.GetCurrentMethod().Name

About getting calling method see: Getting calling method owner

link|flag
Thank ALor, but I guess you missed the point. I don't want the current method name, i need the method name of the method that called the current method. :) – Binder Aug 11 at 11:35
I recently asked same question ;) There are lot of problems with StackFrame - if calling method gets inlined by JIT, you will get wrong results; – ALOR Aug 11 at 15:33

Your Answer

Get an OpenID
or

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