Well, in a non-static method I could use this.GetType() and it would return the Type. How can I get the same Type in a static method? Of course, I can't just write typeof(ThisTypeName) because ThisTypeName is known only in the runtime. Thanks!

link|improve this question

55% accept rate
9  
You are in a STATIC context and cannot write typeof(ThisTypeName)? How? – Bruno Reis Jan 17 '10 at 16:15
There is nothing like 'runtime' inside a static method ( assuming you are not talking about an argument that is passed to a static method). In that case you can simply say typeof(RelevantType) . – Amby Jan 17 '10 at 16:27
2  
A static method cannot be virtual. You already know the type. – Hans Passant Jan 17 '10 at 16:48
There will be many derived classes from an abstract one. The base abstract class has static dictionary<Int, Type>. So derived classes “register” itself in static constructors (dic.Add(N, T)). And yes, I do know the type :) I'm just a bit lazy and don't like to replace the text and was wondering if “T” can be determined in runtime. Please excuse my lie, because it was needed to just simplify the question. And it worked ;) There is an accepted solution now. Thanks. – Yegor Jan 17 '10 at 17:21
I know that this design looks somewhat stupid. But it's just one option among others. – Yegor Jan 17 '10 at 17:24
show 1 more comment
feedback

6 Answers

up vote 17 down vote accepted

If you're looking for a 1 liner that is equivalent to this.GetType() for static methods, try the following.

Type t = MethodBase.GetCurrentMethod().DeclaringType

Although this is likely much more expensive than just using typeof(TheTypeName).

link|improve this answer
This one works fine. Thanks :) It's not that expensive because it'll be called quite rare. – Yegor Jan 17 '10 at 17:11
Entrase, by "expensive" Jared means that they are costly for the processor, usually meaning slow. But he said, "much more expensive" meaning slower. Probably not slow at all, unless you are designing a rocket-guidance system. – Yar Jan 17 '10 at 17:32
I've seen GetCurrentMethod cause some serious performance problems. But since you are just getting the type you can cache it. – Jonathan Allen May 26 '10 at 3:43
1  
This always returns the class that implements the current method, not the class it was called on in the case of subclasses. – Matt Connolly Aug 18 '11 at 23:51
feedback

There's something that the other answers haven't quite clarified, and which is relevant to your idea of the type only being available at execution time.

If you use a derived type to execute a static member, the real type name is emitted in the binary. So for example, compile this code:

UnicodeEncoding.GetEncoding(0);

Now use ildasm on it... you'll see that the call is emitted like this:

IL_0002: call class [mscorlib]System.Text.Encoding [mscorlib]System.Text.Encoding::GetEncoding(int32)

The compiler has resolved the call to Encoding.GetEncoding - there's no trace of UnicodeEncoding left. That makes your idea of "the current type" nonsensical, I'm afraid.

link|improve this answer
feedback

You can't use this in a static method, so that's not possible directly. However, if you need the type of some object, just call GetType on it and make the this instance a parameter that you have to pass, e.g.:

public class Car {
  public static void Drive(Car c) {
    Console.WriteLine("Driving a {0}", c.GetType());
  }
}

This seems like a poor design, though. Are you sure that you really need to get the type of the instance itself inside of its own static method? That seems a little bizarre. Why not just use an instance method?

public class Car {
  public void Drive() { // Remove parameter; doesn't need to be static.
    Console.WriteLine("Driving a {0}", this.GetType());
  }
}
link|improve this answer
feedback

I don't understand why you cannot use typeof(ThisTypeName). If this is a non-generic type, then this should work:

class Foo {
   static void Method1 () {
      Type t = typeof (Foo); // Can just hard code this
   }
}

If it's a generic type, then:

class Foo<T> {
    static void Method1 () {
       Type t = typeof (Foo<T>);
    }
}

Am I missing something obvious here?

link|improve this answer
feedback

Another solution is to use a selfreferecing type

//My base class
//I add a type to my base class use that in the static method to check the type of the caller.
public class Parent<TSelfReferenceType>
{
    public static Type GetType()
    {
        return typeof(TSelfReferenceType);
    }
}

Then in the class that inherits it, I make a self referencing type:

public class Child: Parent<Child>
{
}

Now the call type typeof(TSelfReferenceType) inside Parent will get and return the Type of the caller without the need of an instance.

Child.GetType();

-Rob

link|improve this answer
That works for me! Thanks Rob. :) – David Cuccia Apr 6 '11 at 2:05
I've used this for singleton patterns, i.e. Singleton<T> ... static members can then refer to typeof(T) in error messages or wherever else it's needed. – yoyo Dec 7 '11 at 22:03
feedback

When your member is static, you will always know what type it is part of at runtime. In this case:

class A
{
  public static int GetInt(){}

}
class B : A {}

You cannot call (edit: apparently, you can, see comment below, but you would still be calling into A):

B.GetInt();

because the member is static, it does not play part in inheritance scenarios. Ergo, you always know that the type is A.

link|improve this answer
2  
You can call B.GetInt() - at least, you could if it weren't private - but the compile will translate it into a call to A.GetInt(). Try it! – Jon Skeet Jan 17 '10 at 17:03
Note on Jon's comment: default visibility in C# is private, hence your example doesn't work. – Yar Jan 17 '10 at 17:33
feedback

Your Answer

 
or
required, but never shown

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