Ler em inglês

Partilhar via


Erro do compilador CS0308

O «identificador» de tipo ou método não genérico não pode ser utilizado com argumentos de tipo.

O método ou tipo não é genérico, mas foi usado com argumentos de tipo. Para evitar esse erro, remova os colchetes angulares e os argumentos de tipo, ou redeclare o método ou tipo como um método ou tipo genérico.

O exemplo a seguir gera CS0308:

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

O exemplo a seguir também gera CS0308. Para resolver o erro, use a diretiva "using System.Collections.Generic".

C#
// 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];  
    }  
}