December 2011
3 posts
The interesting bits on the recent Hash Table...
Check out this website I found at packetstormsecurity.org It’s interesting that normal .NET is not affected but ASP.NET is since it uses a different hash function than the one available in the framework. Also, it is interesting how many platforms are affected as well. Posted via email from Adam Hathcock’s Life in Software | Comment »
Another Microsoft mention
Use Compression You can reduce network bandwidth requirements by employing a compression scheme, such as gzip. Using compression is even more important when using an XML-based format like Atom. You should consider using compression to reduce the network requirements when you use the OData client for Windows Phone, which only supports the Atom XML format. ...
Simple Producer Consumer With Tasks And .NET 4
Threading was never so easy since .NET 4 with the TPL has been released. I know I am a bit late but there are so many nice things which might still be new to many of us. The IEnumerable interface has become famous with the introduction of LINQ but many of us have not yet realized that IEnumerable<T> and T[] or List<T> can be exchanged in many cases but there are cases where it is...