私は以下のようなクラスを持っています:-
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はカスタム タイプです。コードを使用してそれらを区別する方法。リフレクションを使用していますが、達成できません。