我有一个像下面这样的课程:-
public Class Student
{
string Name {get; set;}
int Age {get; set;}
Address studentAddres {get; set;}
}
public class Address
{
string Street{get; set;}
string City {get; set;}
}
这里Name 和 Age是System Define 类型,StudentAddres是自定义类型。如何使用代码区分它们。我正在使用反射但无法实现。