System.TypeExtensionMethods.IsValueType C# (CSharp) Méthode

IsValueType() public static méthode

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