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
}