Leer en inglés

Compartir a través de


Error del compilador CS0308

El 'identificador' de tipo o método no genérico no puede usarse con argumentos de tipo.

El método o tipo no es genérico, pero se usó con argumentos de tipo. Para evitar este error, quite los corchetes angulares y los argumentos de tipo o vuelva a declarar el método o tipo como un tipo o método genérico.

El ejemplo siguiente genera el error CS0308:

// CS0308a.cs  
class MyClass  
{  
   public void F() {}  
   public static void Main()  
   {  
      F<int>();  // CS0308 – F is not generic.  
      // Try this instead:  
      // F();  
   }  
}  

El ejemplo siguiente también genera el error CS0308. Para resolver el error, use la directiva "using System.Collections.Generic".

// CS0308b.cs  
// compile with: /t:library  
using System.Collections;  
// To resolve, uncomment the following line:  
// using System.Collections.Generic;  
public class MyStack<T>  
{  
    // Store the elements of the stack:  
    private T[] items = new T[100];  
    private int stack_counter = 0;  
  
    // Define the iterator block:  
    public IEnumerator<T> GetEnumerator()   // CS0308  
    {  
        for (int i = stack_counter - 1 ; i >= 0; i--)  
        yield return items[i];  
    }  
}