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

GetGenericArguments() 공개 정적인 메소드

public static GetGenericArguments ( this type ) : System.Type[]
type this
리턴 System.Type[]
        public static Type[] GetGenericArguments(this Type type)
        {
            return type.GenericTypeArguments;
            //throw new NotImplementedException();

        }
#endif