System.Linq.Expressions.Error.IncorrectNumberOfTypeArgsForAction C# (CSharp) Метод

IncorrectNumberOfTypeArgsForAction() статический приватный Метод

ArgumentException with message like "An incorrect number of type arguments were specified for the declaration of an Action type."
static private IncorrectNumberOfTypeArgsForAction ( string paramName ) : Exception
paramName string
Результат System.Exception
        internal static Exception IncorrectNumberOfTypeArgsForAction(string paramName)
        {
            return new ArgumentException(Strings.IncorrectNumberOfTypeArgsForAction, paramName);
        }
        /// <summary>
Error