Przeczytaj w języku angielskim

Udostępnij za pośrednictwem


Błąd kompilatora CS0308

Nie można używać nieogólnego typu lub metody "identifier" z argumentami typu.

Metoda lub typ nie jest ogólna, ale została użyta z argumentami typu. Aby uniknąć tego błędu, usuń nawiasy kątowe i argumenty typu lub ponownie zadeklaruj metodę lub typ jako metodę lub typ ogólny.

Poniższy przykład generuje CS0308:

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

Poniższy przykład generuje również plik CS0308. Aby rozwiązać ten problem, użyj dyrektywy "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];  
    }  
}