FieldInfo tiene un miembro IsStatic, pero PropertyInfo no. Supongo que estoy ignorando lo que necesito.En C#, ¿cómo puedo saber si una propiedad es estática? (.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' funcionó para mí. –