System.TypeExtensionMethods.IsValueType C# (CSharp) Method

IsValueType() public static method

public static IsValueType ( this type ) : bool
type this
return bool
        public static bool IsValueType(this Type type)
        {
            return type.GetTypeInfo().IsValueType;
        }