Return class name in which a static method resides - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T03:49:13Zhttp://stackoverflow.com/feeds/question/1074113http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1074113/return-class-name-in-which-a-static-method-resides0Return class name in which a static method residesRussel2009-07-02T12:38:47Z2009-07-02T12:57:44Z
<p>Hi</p>
<p>Consider the following code:</p>
<pre><code>public class MyClass
{
public static string MyStaticMethod()
{
//string className = GetClassNameHere...
}
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/1074113/return-class-name-in-which-a-static-method-resides/1074120#107412012Answer by JaredPar for Return class name in which a static method residesJaredPar2009-07-02T12:41:37Z2009-07-02T12:41:37Z<p>Try the following</p>
<pre><code>return typeof(MyClass).Name;
</code></pre>
<p>Or also</p>
<pre><code>return MethodBase.GetCurrentMethod().DeclaringType.Name;
</code></pre>
http://stackoverflow.com/questions/1074113/return-class-name-in-which-a-static-method-resides/1074124#10741242Answer by Chalkey for Return class name in which a static method residesChalkey2009-07-02T12:42:14Z2009-07-02T12:42:14Z<p>You can do this...</p>
<pre><code>String className = typeof(MyClass).Name;
</code></pre>
http://stackoverflow.com/questions/1074113/return-class-name-in-which-a-static-method-resides/1074131#10741310Answer by Rob for Return class name in which a static method residesRob2009-07-02T12:44:04Z2009-07-02T12:45:49Z<p>Try this:</p>
<pre><code>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();
}
}
}
</code></pre>
<p>The console will show "ConsoleApplication1.Program" =)</p>
http://stackoverflow.com/questions/1074113/return-class-name-in-which-a-static-method-resides/1074187#10741870Answer by Fredrik Mörk for Return class name in which a static method residesFredrik Mörk2009-07-02T12:57:44Z2009-07-02T12:57:44Z<p>I may be missing the point entirely here, but what's wrong with the string "MyClass"?</p>
<pre><code>public class MyClass
{
public static string MyStaticMethod()
{
string className = "MyClass";
Console.WriteLine(className);
}
}
</code></pre>
<p>You may argue that if MyClass is inherited, you would want the name of the inherited class instead. Then consider the following:</p>
<pre><code>public class MyClass
{
public static string MyStaticMethod()
{
string className = typeof(MyClass).Name;
Console.WriteLine(className);
}
}
public class MyOtherClass : MyClass{ }
</code></pre>
<p>Now, what do you think you will see in the Console if you invoke <code>MyOtherClass.SomeMethod</code>? The answer is "<code>MyClass</code>". 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.</p>