How can I get the type (not a name string, but a type itself) of the current class, in a static method of an abstract class?
using System.Reflection; // I'll need it, right?
public abstract class AbstractClass {
    private static void Method() {
        // I want to get CurrentClass type here
    }
}
public class CurrentClass : AbstractClass {
    public void DoStuff() {
        Method(); // Here I'm calling it
    }
}
This question is very similar to this one:
How to get the current class name at runtime?
However, I want to get this information from inside the static method.
 
     
     
     
     
    