Return class name in which a static method resides - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:49:13Z http://stackoverflow.com/feeds/question/1074113 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1074113/return-class-name-in-which-a-static-method-resides 0 Return class name in which a static method resides Russel 2009-07-02T12:38:47Z 2009-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#1074120 12 Answer by JaredPar for Return class name in which a static method resides JaredPar 2009-07-02T12:41:37Z 2009-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#1074124 2 Answer by Chalkey for Return class name in which a static method resides Chalkey 2009-07-02T12:42:14Z 2009-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#1074131 0 Answer by Rob for Return class name in which a static method resides Rob 2009-07-02T12:44:04Z 2009-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#1074187 0 Answer by Fredrik Mörk for Return class name in which a static method resides Fredrik Mörk 2009-07-02T12:57:44Z 2009-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>