vote up 1 vote down star
1

FieldInfo has an IsStatic member, but PropertyInfo doesn't. I assume I'm just overlooking what I need.

Type type = someObject.GetType();

foreach (PropertyInfo pi in type.GetProperties())
{
   // umm... Not sure how to tell if this property is static
}
flag

58% accept rate

2 Answers

vote up 6 vote down check

To determine whether a property is static, you must obtain the MethodInfo for the get or set accessor, by calling the GetGetMethod or the GetSetMethod method, and examine its IsStatic property.

http://msdn.microsoft.com/en-us/library/system.reflection.propertyinfo.aspx

link|flag
Interesting. I never would have guessed there was a GetGetMethod method. – Jim Anderson Dec 26 '08 at 14:31
vote up 2 vote down

Why not use

type.GetGroperties(BindingFlags.Static)
link|flag
Nice! However, in my case I want the non-static which doesn't seem to have a binding flag. – CrashCodes Dec 24 '08 at 20:40
BindingFlags.Instance – tvanfosson Dec 24 '08 at 20:43
@tvanfosson Thanks. – CrashCodes Dec 24 '08 at 21:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.