Name

ArrayTypeMismatchException

Synopsis

This exception is thrown when you store an element in an array that has a different type than the array’s declared type. For example, trying to store a String object into an array declared to hold Int32 instances causes this exception to be thrown.

public class ArrayTypeMismatchException : SystemException {
// Public Constructors
   public method ArrayTypeMismatchException();  
   public method ArrayTypeMismatchException(string message);  
   public method ArrayTypeMismatchException(string message, 
        Exception innerException);  
// Protected Constructors
   protected method ArrayTypeMismatchException(
        System.Runtime.Serialization.SerializationInfo info, 
        System.Runtime.Serialization.StreamingContext context);  
}

Hierarchy

ObjectException(System.Runtime.Serialization.ISerializable)SystemExceptionArrayTypeMismatchException

Get C# in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.