Мне хотелось бы получить тип производного класса из статического метода его базового класса.
Как это можно сделать?
Спасибо!
class BaseClass {
static void Ping () {
Type t = this.GetType(); // should be DerivedClass, but it is not possible with a static method
}
}
class DerivedClass : BaseClass {}
// somewhere in the code
DerivedClass.Ping();