我有以下三个课程:
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 中的四个成员提供 PropertyInfo。我需要获取 TestA、TestB 和 TestC 类中所有成员的 PropertyInfo。
请帮助...提前谢谢,桑