What is a really good book that lists and explains all the namespaces of the .NET framework. version 2 (3/3.5 is a plus)?
If you want explanation of everything in the .NET Framework, the ultimate reference is the MSDN Library. You should consult that instead of looking for books.
The best way to learn all of the tools offered by .NET is through experience. Learn the basics of C#/VB.NET as well as the classes included in the "core" namespaces of the .NET framework (System
, System.Collections[.Generic]
, etc.). From there, explore additional namespaces and classes as you need them.
The MSDN Library is designed to be more of a "reference" resource, but that's because the .NET Framework is not meant to be learned all at once.
Take a look at http://stackoverflow.com/questions/446743/best-book-to-get-intimately-familiar-with-the-net-framework
Forget about books. Every time you suspect there may be another way, a class you don't know about etc. come and ask here, and you will find much more than books or MSDN can show you.