[ Team LiB ] Previous Section Next Section

TargetParameterCountExceptionCF 1.0, ECMA 1.0, serializable

System.Reflection (mscorlib.dll)sealed class

This exception is thrown when a method is invoked with an incorrect number of parameters. Note that this can only come when invoking methods via reflection, since the compiler detects any normal parameter count errors.

public sealed class TargetParameterCountException : ApplicationException {
// Public Constructors
   public TargetParameterCountException( );
   public TargetParameterCountException(string message);
   public TargetParameterCountException(string message, Exception inner);
}

Hierarchy

System.Object System.Exception(System.Runtime.Serialization.ISerializable) System.ApplicationException TargetParameterCountException

    [ Team LiB ] Previous Section Next Section