CSharp FAQ : What's New in the C# 2.0 Language and Compiler
Posted by: Mihir Solankis .NET Journal,
on 13 Dec 2005 |
View original | Bookmarked: 0 time(s)
With the release of Visual Studio 2005, the C# language has been updated to version 2.0, which supports the following new features:
GenericsGeneric types are added to the language to enable programmers to achieve a high level of code reuse and enhanced performance for collection classes. Generic types can differ only by arity. Parameters can also be forced to be specific types.
IteratorsIterators make it easier to dictate how a foreach loop will iterate over a collection's contents.
Partial ClassesPartial...