实际上,我想在方法中访问基类的属性,而不是直接实例化该对象。下面是代码,我正在处理:
public class Test
{
public static void Main()
{
drivedclass obj = new drivedclass();
obj.DoSomething();
}
}
public class drivedclass : baseclass
{
public void DoSomething()
{
LoadSomeThing();
}
}
public class baseclass
{
public string property1
{
get;
set;
}
public string property2
{
get;
set;
}
public void LoadSomeThing()
{
//here I want to access values of all properties
}
}
我想知道是否有办法,我可以访问同一类的方法中的属性,并且该类是基类。