I was browsing the Hidden Features of C# question and thought I would try out one of the features I was unfamiliar with. Unfortunately I use Visual Studio 2005 and the feature in question was introduced later. Is there a good list for new features in C# 3.0 (Visual Studio 2008) vs. C# 2.0 (Visual Studio 2005)?
|
|
|
|
|
|
|
This is not a comprehensive list but these are some of my favorite new features of C# 3.0: New type initializers. Instead of saying this:
I can say this:
Similarly, instead of adding items individually, I can initialize types that implement IEnumerable like this:
The new syntax for lambda expressions is also nice. Instead of typing this:
I can type this:
You can also write extension methods to built in types:
Which allows something like this:
And finally. Anonymous types. So you can create anonymous classes on the fly, like this:
|
||
|
|
|
|
Here's a link to the MS page on .NET 3.0: http://msdn.microsoft.com/en-us/library/bb822048.aspx ...and on VS 2008 for C#: http://msdn.microsoft.com/en-us/library/bb383815.aspx I haven't tried VS2008 and .NET 3.0 out, but I figure the links might help ;) |
||
|
|
|
|
One of the unknown but powerful feature of Visual Studio 2008 is T4 (Text Template Transformation Toolkit). T4 is a code generator built right into Visual Studio 2008. Check the Scott Guthrie's blog post Visual Studio 2008 and .NET 3.5 Released. This post was written when Visual Studio 2008 and .NET 3.5 is Released. This post has included lot of links for the new features of Visual Studio 2008 and C# 3.0. |
|||
|
|
|
|
A couple features I like:
For example:
instead of:
|
||
|
|
|
Multi-targetting support. You can build .NET 2 -> .NET 3.5 all from the one IDE. |
||
|
|
