我有以下高阶函数:
public static Func<T,bool> Not<T>(Func<T,bool> otherFunc) { return arg => !otherFunc(arg); }
并试图把它称为:
var isValidStr = LinqUtils.Not(string.IsNullOrWhiteSpace);
编译器给我“类型参数不能从使用推断”的错误.
但以下作品:
var isValidStr = LinqUtils.Not((string s) => string.IsNullOrWhiteSpace(s));
我不知道有什么区别?
string.IsNullOrWhiteSpace已经是一个非重载函数,具有完全相同的签名.
如在评论中提到的,以下内容也起作用,仍然不能解释为什么在这种情况下类型推断失败:
var isValidStr = LinqUtils.Not<string>(string.IsNullOrWhiteSpace);