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