私は Person クラスを持っています:
public class Person
{
virtual public long Code { get; set; }
virtual public string Title { get; set; }
virtual public Employee Employee { get; set; }
}
カスタムクラスタイプによるプロパティなしで Person クラスのすべてのプロパティを取得するための一般的なソリューションが必要です。select Code
、Title
プロパティを意味します。
typeof(Person).GetProperties(); //Title , Code , Employee
typeof(Person).GetProperties().Where(x => !x.PropertyType.IsClass); // Code
カスタム クラス タイプのないすべてのプロパティを選択するにはどうすればよいですか? ( Code
, Title
)