I'm having trouble finding a list of the changes and bug fixes that have been made in the .Net framework for .Net 4.0. They're not easy to find, but surely they exist somewhere?
Specifically I want to find out what changes and updates have been made for System.Net.HttpWebRequest
and System.Net.CookieContainer
, as both are quite bugridden in 3.5 开发者_JAVA技巧and I want to evaluate whether I should write my code for .Net 4.0 or if I should create some custom classes to work around their issues.
.NET documentation teams do not publish a list of bug fixes.
You might find something in "What's new" documents such as this one: they usually list not only new features, but also significant improvements.
You can also search on Microsoft Connect. For example: http://connect.microsoft.com/SearchResultsLive.aspx?SearchQuery=HttpWebReques
http://connect.microsoft.com/SearchResultsLive.aspx?SearchQuery=CookieContainer
I don't see that many bugs reported, though. If you have problems with these classes, you should probably submit those at Connect.
精彩评论