Hi,
I'm looking for a good article that lists whats new in C# 2.0
from C#1.1 - just the new features is all. Would appreciate any
comments/suggestions/ideas/article that you would like to share that
you may have on this.
Thanking you,
Colm
Anthony Jones - 30 Mar 2008 21:17 GMT
> Hi,
>
> I'm looking for a good article that lists whats new in C# 2.0
> from C#1.1 - just the new features is all. Would appreciate any
> comments/suggestions/ideas/article that you would like to share that
> you may have on this.
http://msdn2.microsoft.com/en-gb/library/7cz8t42e(VS.80).aspx

Signature
Anthony Jones - MVP ASP/ASP.NET
Jon Skeet [C# MVP] - 30 Mar 2008 21:22 GMT
> I'm looking for a good article that lists whats new in C# 2.0
> from C#1.1 - just the new features is all. Would appreciate any
> comments/suggestions/ideas/article that you would like to share that
> you may have on this.
Brief description:
http://csharpindepth.com/Articles/General/BluffersGuide2.aspx
A bit more depth, but still nothing particularly detailed:
http://pobox.com/~skeet/csharp/csharp2
If you fancy reading a book about C# 2 (and 3) deliberately written for
people who already know C# 1, I can recommend C# in Depth with a huge
amount of bias (as the author). Read more about it at csharpindepth.com
and have a look at a free chapter at
http://www.manning.com/affiliate/idevaffiliate.php?id=876_112
The e-book should be out "real soon now" (really, really soon I hope) -
the paperback in about a month.

Signature
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
World class .NET training in the UK: http://iterativetraining.co.uk
Arne Vajhøj - 30 Mar 2008 22:28 GMT
> I'm looking for a good article that lists whats new in C# 2.0
> from C#1.1 - just the new features is all. Would appreciate any
> comments/suggestions/ideas/article that you would like to share that
> you may have on this.
Google should find plenty.
A few that I find relevant:
.NET 2.0:
- FTP client
- ping
- HTTP server
- GZip
- generic collections
C# 2.0:
- partial classes
- generics
- nullable types
- anonymous methods
- static classes
- seperate accessibility on get and set
Arne