基本クラスの派生クラス メンバーにアクセスしたい:
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;
}
これらが可能かどうかはわかりませんが、解決するためのアイデアがあれば幸いです。
ありがとうございました