System.TypeExtensionMethods.IsPrimitive C# (CSharp) 메소드

IsPrimitive() 공개 정적인 메소드

public static IsPrimitive ( this type ) : bool
type this
리턴 bool
        public static bool IsPrimitive(this Type type)
        {
            return type.GetTypeInfo().IsPrimitive;
        }