We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
这里有一些关于 lambda 的教程:
http://msdn.microsoft.com/en-us/library/bb397687。 .aspx
http://blogs.msdn.com/ericwhite/pages/Lambda-Expressions。 aspx
以下是 Eric Lippert 关于该主题的帖子:
http://blogs.msdn.com/ericlippert/archive/标签/Lambda+Expressions/default.aspx
Here is several tutorials about lambdas:
http://msdn.microsoft.com/en-us/library/bb397687.aspx
http://blogs.msdn.com/ericwhite/pages/Lambda-Expressions.aspx
And here are Eric Lippert's posts on the subject:
http://blogs.msdn.com/ericlippert/archive/tags/Lambda+Expressions/default.aspx
Eric White 有一篇不错的博客文章,介绍了 Lambda 表达式的一些示例:
否则,由于每个表达式通常都是根据要求定制的,我建议您阅读一本不错的书来帮助您入门。许多 Linq 标题都很好地涵盖了 lambda 表达式。我个人推荐 Linq in Action
Eric White has a nice blog entry on some examples of Lambda expressions:
Otherwise, as each expressions is generally bespoke to the requirement I'd advise a decent book to get you started. Many of the Linq title cover lambda expressions well. Personally I'd recommend Linq in Action
除了在 Google 上搜索之外,我可能建议获取免费版本的 CodeRush / Refactor!来自 DevExpress。其中一项重构是将代码转换为 lambda 表达式,这是一种基于您自己的代码查看现实世界相关示例的绝佳方法。
编辑:CodeRush Xpress 附带的 Lambda 重构详细信息
Apart from a search on Google, I'd probably recommend getting the free version of CodeRush / Refactor! from DevExpress. One of the refactorings is to convert code to lambda expressions, and can be an excellent way to see real-world, relevant examples based on your own code.
Edit: The Lambda Refactorings that come with CodeRush Xpress are detailed here
Jon Skeet 写了一本出色的书,不仅讨论了 lambda 表达式,而且还深入探讨了对于具有 C# 1 或 2 背景的人来说可能陌生的主题。 http://csharpin深度.com/
Jon Skeet wrote an excellent book that tackles lambda expressions but also goes into a tremendous amount of depth on topics that might be new to someone coming from a C# 1 or 2 background. http://csharpindepth.com/
另外两篇关于 C# lambda 表达式的精彩介绍:
第一篇(免责声明 - 我的博客)将为您提供基本概念的快速解释。本书完整涵盖了所有相关主题。
Two other good introductions to C# lambda expressions:
The first (disclaimer - my blog) will give you a quick explanation of the fundamental concepts. The book provides complete coverage of all relevant topics.