System.CompatibilityExtensions.GetIsGenericTypeDefinition C# (CSharp) Method

GetIsGenericTypeDefinition() public static method

public static GetIsGenericTypeDefinition ( this type ) : bool
type this
return bool
        public static bool GetIsGenericTypeDefinition(this Type type)
        {
            return type.IsGenericTypeDefinition;
        }