Getting Type from a static method
Hello,
I'm trying to get the current Type of a class when executing a static method. That is,
public class DbConnector
{
public static void method()
{
Type t = this.GetType(); // Will not work, since this is not allowed
}
}
Any ideas how to go about doing this?
Thanks,
chris