with generics, iterators and anonymous methods in c# 2.0, the groundwork was laid for what would eventually become linq.
c#2.0中的范型、迭代和匿名方法最终会成为linq的基础。
the bad news is that any project making heavy use of anonymous methods is likely no longer code analysis clean on its upgrade to visual studio 2008.
任何大 量使用了匿名方法的项目,在升级到visualstudio2008时,有可能无法保持代码分析的清洁性。
the biggest news is that the debugger now has support for c# 2.0 features such as generics, anonymous methods and iterators ....
最大的消息是调试器现在支持c#2.0的特性,如泛型、匿名方法和迭代器……
anonymous methods (c# programming guide)) that are in scope in the method that defines the lambda function, or in scope in the type that contains the lambda expression.
在定义lambda函数的方法内或包含lambda表达式的类型内,lambda 可以引用范围内的外部变量(请参阅匿名方法(c#编程指南))。
support for analyzing anonymous methods and lambda expressions
对分析匿名方法和lambda表达式的支持;
anonymous methods are most frequently used to pass a code block as a delegate parameter.
匿名方法通常用于将代码块作为委托参数进行传递。
with anonymous methods mimic the code layout of a regular method, aligned with the anonymous delegate declaration.
匿名方法模仿普通方法的布局,和匿名委托定义放在一行。
anonymous methods enable you to omit the parameter list.
您可使用匿名方法来忽略参数列表。
creating anonymous methods is essentially a way to pass a code block as a delegate parameter.
要将代码块传递为委托参数,创建匿名方法则是唯一的方法。