I
Ivan
Here is what I try to accomplish.
I have class that implements base class. "GetyType" static property is in
BaseClass object but will be accessed through implementing objects. How do I
know type of actual object?
So, I want to return "MyClassX" if I do MyClassX.GetType
public abstract class BaseClass
{
public static string GetType
{get{return typeof(??????); }}
}
public class MyClassX: BaseClass
{}
Thanks for any help!
I have class that implements base class. "GetyType" static property is in
BaseClass object but will be accessed through implementing objects. How do I
know type of actual object?
So, I want to return "MyClassX" if I do MyClassX.GetType
public abstract class BaseClass
{
public static string GetType
{get{return typeof(??????); }}
}
public class MyClassX: BaseClass
{}
Thanks for any help!