Compartir a través de


Error del compilador CS0611

Actualización: noviembre 2007

Mensaje de error

Los elementos de matriz no pueden ser del tipo 'tipo'
Array elements cannot be of type 'type'

Existen algunos tipos que no pueden utilizarse como tipos de una matriz. En estos tipos se incluyen System.TypedReference y System.ArgIterator.

Los siguientes ejemplos generan CS0611 por utilizar System.TypedReference como un elemento de matriz:

// CS0611.cs
public class a
{
   public static void Main()
   {
      System.TypedReference[] ao = new System.TypedReference [10];   // CS0611
      // try the following line instead
      // int[] ao = new int[10];
   }
}