FieldInfo a un membre IsStatic, mais pas PropertyInfo. Je suppose que je suis juste en train de négliger ce dont j'ai besoin.En C#, comment savoir si une propriété est statique? (.Net CF 2.0)
Type type = someObject.GetType();
foreach (PropertyInfo pi in type.GetProperties())
{
// umm... Not sure how to tell if this property is static
}
'BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy' travaillé pour moi. –