В поле FieldInfo есть элемент IsStatic, но PropertyInfo не работает. Я предполагаю, что я просто не замечаю, что мне нужно.
Type type = someObject.GetType();
foreach (PropertyInfo pi in type.GetProperties())
{
// umm... Not sure how to tell if this property is static
}