System.Linq.Expressions.Error.IncorrectNumberOfTypeArgsForFunc C# (CSharp) Méthode

IncorrectNumberOfTypeArgsForFunc() static private méthode

ArgumentException with message like "An incorrect number of type arguments were specified for the declaration of a Func type."
static private IncorrectNumberOfTypeArgsForFunc ( string paramName ) : Exception
paramName string
Résultat System.Exception
        internal static Exception IncorrectNumberOfTypeArgsForFunc(string paramName)
        {
            return new ArgumentException(Strings.IncorrectNumberOfTypeArgsForFunc, paramName);
        }
        /// <summary>
Error