我想访问基类中的派生类成员:
class Program
{
static void Main(string[] args)
{
B b = new B();
b.FieldTest = 5;
b.MethodeTest();
}
}
public class A
{
public void MethodeTest()
{
//will return B
Type t = this.GetType();
Console.WriteLine(t);
var temp = ???.FieldTest;
//i want that these return 5
Console.WriteLine(temp);
Console.ReadLine();
}
}
public class B:A
{
public int FieldTest;
}
我不确定这些是可能的,但我希望你有任何想法来解决它。
谢谢