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

GetGenericArguments() public static méthode

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

        }
#endif