February 2010
Beginner
400 pages
11h 13m
English
.NET 4.0 enhances a number of existing commonly used methods and classes.
Action and Func delegates now can accept up to 16 generic parameters, which might result in unreadable code.
The 4GB size limit has been removed from System.IO.Compression methods. The compression methods in DeflateStream and GZipStream do not try to compress already compressed data, resulting in better performance and compression ratios.
.NET 4.0 introduces a new method to the File class called File.ReadLines(), which returns IEnumerable<string> rather than a string array. Reading a file one line at a time is much more efficient than loading the ...