public class ReflectionBase
{
public String ParentProperty1 { get; set; }
public String ParentProperty2 { get; set; }
}
public class Reflection : ReflectionBase
{
public String ChildProperty1 { get; set; }
public Reflection()
{
var property = this.GetType().GetProperties();
}
}
結果:
ParentProperty1
ParentProperty2
ChildProperty1
必要:
ChildProperty1
GetProperties() を呼び出すと、現在のクラス プロパティと基本クラスがすべて表示されますが、現在のクラス プロパティだけが必要です。
助けてください...