次のように3つのクラスがあります。
public class TestA
{
public string Str1 { get; set; }
public string Str2 { get; set; }
public List<TestB> LstTestBs { get; set; }
public TestC ObjTestC { get; set; }
}
public class TestB
{
public string Str3 { get; set; }
public string Str4 { get; set; }
}
public class TestC
{
public string Str5 { get; set; }
}
私が試してみました:
var prop = typeof (TestA).GetProperties();
ただし、TestA 内の 4 つのメンバーの PropertyInfo のみを提供しています。TestA、TestB、および TestC クラスのすべてのメンバーの PropertyInfo を取得する必要があります。
助けてください...よろしくお願いします、サン