56

我有以下在 .NET 4.0 项目中编译的代码

namespace ConsoleApplication1  
{  
    class Program  
    {  
        static void Main(string[] args)  
        {  

        }  
    }  

    public static class Utility  
    {  
        public static IEnumerable<T> Filter1(this IEnumerable<T> input, Func<T, bool> predicate)  
        {  
            foreach (var item in input)  
            {  
                if (predicate(item))  
                {  
                    yield return item;  
                }  
            }  
        }  
    }  
}  

但出现以下错误。我已经将 System.dll 作为默认值包含在引用中。我可能做错了什么?

Error   1   The type or namespace name 'T' could not be found (are you missing a using directive or an assembly reference?) 

Error   2   The type or namespace name 'T' could not be found (are you missing a using directive or an assembly reference?) 

Error   3   The type or namespace name 'T' could not be found (are you missing a using directive or an assembly reference?) 
4

5 回答 5

75

您必须将类型参数放在函数本身上。

public static IEnumerable<T> Filter1<T>(...)
于 2012-06-21T17:55:33.210 回答
50
public static class Utility 
{  
    public static IEnumerable<T> Filter1<T>( // Type argument on the function
       this IEnumerable<T> input, Func<T, bool> predicate)  
    {  

如果您不关心它是否是扩展方法,则可以向类添加通用约束。我的猜测是你想要扩展方法。

public static class Utility<T> // Type argument on class
{  
    public static IEnumerable<T> Filter1( // No longer an extension method
       IEnumerable<T> input, Func<T, bool> predicate)  
    {  
于 2012-06-21T17:55:41.453 回答
18

您需要声明T,它出现在方法名或类名之后。将您的方法声明更改为:

public static IEnumerable<T> 
    Filter1<T>(this IEnumerable<T> input, Func<T, bool> predicate) 
于 2012-06-21T17:55:35.450 回答
2

我有同样的错误,但所需的解决方案略有不同。我需要改变这个:

public static void AllItemsSatisy(this CollectionAssert collectionAssert, ICollection<T> collection, Predicate<T> predicate) 
{ ... }

对此:

public static void AllItemsSatisy<T>(this CollectionAssert collectionAssert, ICollection<T> collection, Predicate<T> predicate) 
{ ... }
于 2019-05-17T14:26:28.340 回答
0

<T> 表示对象的类型

IEnumerable<yourObject>

在这里您可以获得更多信息:http: //msdn.microsoft.com/en-us/library/9eekhta0.aspx

于 2012-06-21T17:55:39.153 回答