Given a PropertyInfo
instance, which has a Type
property, how does one determine if it is a struct? I found there are properties such as IsPr
Structs and enums (IsEnum
) fall under the superset called value types (IsValueType
). Primitive types (IsPrimitive
) are a subset of struct. Which means all primitive types are structs but not vice versa; for eg, int
is a primitive type as well as struct, but decimal
is only a struct, not a primitive type.
So you see the only missing property there is that of a struct. Easy to write one:
public bool IsStruct(this Type type)
{
return type.IsValueType && !type.IsEnum;
}
Type.IsValueType should do the trick.
(pinched from here)
putting the comments on Antony Koch 's answer into an extention method:
public static class ReflectionExtensions {
public static bool IsCustomValueType(this Type type) {
return type.IsValueType && !type.IsPrimitive && type.Namespace != null && !type.Namespace.StartsWith("System.");
}
}
should work