[ Team LiB ] Previous Section Next Section

ArrayTypeMismatchExceptionCF 1.0, ECMA 1.0, serializable

System (mscorlib.dll)class

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 ArrayTypeMismatchException( );
   public ArrayTypeMismatchException(string message);
   public ArrayTypeMismatchException(string message, Exception innerException);
// Protected Constructors
   protected ArrayTypeMismatchException(System.Runtime.Serialization.SerializationInfo info, 
        System.Runtime.Serialization.StreamingContext context);
}

Hierarchy

Object Exception(System.Runtime.Serialization.ISerializable) SystemException ArrayTypeMismatchException

    [ Team LiB ] Previous Section Next Section