gpt4 book ai didi

c# - 扩展方法。找不到类型或命名空间名称 'T'

转载 作者:太空狗 更新时间:2023-10-29 17:30:32 25 4
gpt4 key购买 nike

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

public static class Ext 
{
public static IEnumerable<T> Where(this IEnumerable<T> source, Func<T, bool> predicate)
{
if (source == null)
{
throw new ArgumentNullException("source");
}
if (predicate == null)
{
throw new ArgumentNullException("predicate");
}
return WhereIterator(source, predicate);
}

private static IEnumerable<T> WhereIterator(IEnumerable<T> source, Func<T, bool> predicate)
{
foreach (T current in source)
{
if (predicate(current))
{
yield return current;
}
}
}
}

但出现以下错误。我已经将 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?)

最佳答案

尝试:

public static IEnumerable<T> Where<T>(this IEnumerable<T> source, Func<T, bool> predicate)

private static IEnumerable<T> WhereIterator<T>(IEnumerable<T> source, Func<T, bool> predicate)

简而言之,您在方法签名中缺少通用 T 声明(所有其他 T 都是从中推断出来的)。

关于c# - 扩展方法。找不到类型或命名空间名称 'T',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17853464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com