更新:2007 年 11 月
错误消息
表达式目录树 lambda 不能包含方法组。方法调用需要 () 运算符。不具有该运算符的方法名称将引用方法组,该方法组是所有具有该名称的重载方法集。
更正此错误
如果打算调用该方法,请添加 () 运算符。
示例
下面的示例将生成 CS1953:
复制代码 | |
---|---|
// cs1953.cs using System; using System.Linq.Expressions; class CS1953 { public static void Main() { double num = 10; Expression<Func<bool>> testExpr = () => num.GetType is int; // CS1953 } } |