使用英语阅读

通过


编译器错误 CS0308

非泛型类型或方法“identifier”不能与类型参数一起使用。

方法或类型并非泛型,却与类型参数一起使用。 若要避免此错误,删除尖括号和类型参数,或将该方法或类型重新声明为泛型方法或类型。

以下示例生成 CS0308:

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

以下示例还生成 CS0308。 要解决此错误,请使用"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];  
    }  
}