tags:

views:

78

answers:

3

Is there a blog or MSDN article, which lists all the new methods which are added in .Net 4.0 in existing classes? I could not find any.

Two which I found on blogs till now:

String.IsNullOrWhiteSpace
Enum.HasFlag

Are there more such methods added which anybody found? If yes, please share.

+4  A: 

On the blog of the .NET BCL (base class library) team, there is a list of changes, although it is for .NET 4 Beta 1 and 2:

gammelgul
Thanks a lot. Exactly what I was looking for.
Yogesh
+2  A: 

Theres a few new ones on the page class:

Page.MetaDescription = "";
Page.MetaKeywords = "";

Plus a new 301 method:

Response.RedirectPermanent("~/page.aspx");

I guess this isn't really the best way to approach it as many of the new features wouldn't make much sense without being put into context.

This document highlights most of the new features if you want to get up to speed on .net 4:

rtpHarry
I know most of the new features and instead, using them in my projects which I am shifting to 4.0. But I just wanted to know new convenience methods added to old classes for simplifying common tasks. Thanks though. The page you linked is quite helpful too.
Yogesh
+1  A: 

This link shows the updated list, which gammelgul posted, for RTM:

Yogesh