vote up 0 vote down star

Hi

Consider the following code:

public class MyClass
{
     public static string MyStaticMethod()
     {
          //string className = GetClassNameHere...
     }
}

Is it possible to get the name of the class in which the static method resides ? Due to the fact that im using a static method, it is not possible to use the this pointer to retrieve the type of the object that im currently working in.

flag

60% accept rate
Pls elaborate what do you mean by "this pointer" – AB Kolan Jul 2 at 12:42
1  
@AB Kolan: I assume Russel is referring the keyword "this". – Fredrik Mörk Jul 2 at 12:45

4 Answers

vote up 13 vote down check

Try the following

return typeof(MyClass).Name;

Or also

return MethodBase.GetCurrentMethod().DeclaringType.Name;
link|flag
Beat me to it! :) – Chalkey Jul 2 at 13:11
vote up 2 vote down

You can do this...

String className = typeof(MyClass).Name;
link|flag
vote up 0 vote down

Try this:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            MethodBase m = MethodInfo.GetCurrentMethod();
            MemberInfo info = (MemberInfo)m;
            Console.WriteLine(info.DeclaringType.FullName);
            Console.ReadKey();
        }
    }
}

The console will show "ConsoleApplication1.Program" =)

link|flag
OP is looking for the class name, not the method name. – JaredPar Jul 2 at 12:44
Also, you shouldn't need to cast to MemberInfo. m.Name should be enough. – John Saunders Jul 2 at 12:46
@JaredPar - Yup, I realised my bad, d'oh =) – Rob Jul 2 at 12:46
vote up 0 vote down

I may be missing the point entirely here, but what's wrong with the string "MyClass"?

public class MyClass
{
     public static string MyStaticMethod()
     {
          string className = "MyClass";
          Console.WriteLine(className);
     }
}

You may argue that if MyClass is inherited, you would want the name of the inherited class instead. Then consider the following:

public class MyClass
{
    public static string MyStaticMethod()
    {
        string className = typeof(MyClass).Name;
        Console.WriteLine(className);
    }
}
public class MyOtherClass : MyClass{ }

Now, what do you think you will see in the Console if you invoke MyOtherClass.SomeMethod? The answer is "MyClass". So, looking up the class name dynamically will give you the exact same result as simply typing it in a string. The only upside I can see with getting it through Reflection is that it will still render the correct result if you rename the class.

link|flag
He might want it to be refactoring-safe. And for inheritance of course, though that's tricky. – Wouter Lievens Jul 2 at 13:02
It may be a rather good performance penalty for keeping it safe for refactoring. And as I point out in my answer, there is no inheritance upside since it is a static method; it will always return the name of the base class. – Fredrik Mörk Jul 2 at 13:04

Your Answer

Get an OpenID
or

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