public class Parent
{
public virtual DateTime DateCreated
{
get;
set;
}
}
public class Child:Parent
{
......
}
Type type = typeof(Child);
//PropertyInfo DateTime = type.GetProperty("DateCreated");
プロパティ「DateCreated」が子プロパティではなく親プロパティであることを知る方法はありますか。