public class BaseDto
{
public int ID{ get; set; }
}
public class Client: BaseDto
{
public string Surname { get; set; }
public string FirstName{ get; set; }
public string email{ get; set; }
}
PropertyInfo[] props = typeof(Client).GetProperties();
これにより、姓、名、電子メール、ID の順にプロパティが一覧表示されます。
プロパティを次の順序で表示する: ID、姓、名、電子メール