tags:

views:

77

answers:

1

C# 4.0 has a lot of new major features such as dynamic type, covariance and contravariance, named arguments etc.

But C# 4.0 contains new minor (but useful) changes such as TryParse method for TimeSpan, Enum, Guid data types, String.IsNullOrWhiteSpace, System.IO.Stream.CopyTo etc.

What other minor and useful features of C# 4.0 can you list?

+2  A: 

You need to differentiate between features of the language vs features of the framework. For C#4.0, those features you list are the new features that was added.

For .NET Framework 4, the list is long. Some of the most interesting and/or generally usable ones include:

There is an exhaustive list here. It is also interesting to read the list of obsoleted types in the new version.

driis