There are a lot of new features that came with the .Net Framework 3.5. Most of the posts and info on the subject list stuff about new 3.5 features and C# 3 changes at the same time. But C# 3 can be used without .Net 3.5. Does anyone know of a good post describing the changes to the language? (Besides the boring, explicit official specs at MSDN that is.)
|
|
closed as too localized by Will♦ Oct 14 '11 at 14:52
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Update: I can certainly understand. Eric Lippert has some more indepth posts..Check them out. I liked the series of posts by scottgu on the new language features.. Some more info here as well http://www.danielmoth.com/Blog/2007/11/top-10-things-to-know-about-visual.html esp the section on language features. |
||||
|
|
Scott Guthrie has a good series of blog posts that describe a lot of the improvements. Scroll down to "Language Improvements and LINQ". Lambda Expressions |
|||||||||
|
|
There's a "quick and dirty" list on my C# in Depth site (which is also slightly tongue in cheek): To respond somewhat to Charles Graham's post, I have an article about how applicable the language features are when targeting .NET 2.0: Just as a blatant plug, if you're interested in language rather than framework, C# in Depth is about as close to a "language only" book as I've seen. It's also divided into two parts (after the introduction): new features in C# 2, and new features in C# 3. |
||||
|
|
That's one thing that I would concretely like to know myself. The one thing that I can tell you is that a lot of the new features in C# 3.0 will actually work in a purely 2.0 application if you do multi targeting in VS 2008. I know that extension methods are one such thing. |
|||
|
|
here is a series of articles that helped me understand the new features quickly http://blah.winsmarts.com/2006/05/19/demystifying-c-30--part-4-lambda-expressions.aspx |
|||
|
|