FlatRedBall.Content.MappingMethods.IsStruct C# (CSharp) Method

IsStruct() protected static method

protected static IsStruct ( Type t ) : bool
t System.Type
return bool
        protected static bool IsStruct(Type t)
        {
            return t.IsValueType && t.IsPrimitive == false && t.IsEnum == false;
        }