System.TypeExtensionMethods.IsValueType C# (CSharp) Метод

IsValueType() публичный статический Метод

public static IsValueType ( this type ) : bool
type this
Результат bool
        public static bool IsValueType(this Type type)
        {
            return type.GetTypeInfo().IsValueType;
        }