【发布时间】:2008-12-24 19:38:29
【问题描述】:
FieldInfo 有一个 IsStatic 成员,但 PropertyInfo 没有。我想我只是忽略了我需要的东西。
Type type = someObject.GetType();
foreach (PropertyInfo pi in type.GetProperties())
{
// umm... Not sure how to tell if this property is static
}
【问题讨论】:
标签: c# reflection compact-framework