tags:

views:

191

answers:

6

I have been finding recently that when I try to solve certain programming problems by writing new code that I am reinventing the wheel because the .NET Framework already provides a solution. I am looking for a good book or other resource to help me get ahead of this situation. Something that can be read as an overview would be good, so I have a good feel for the Framework as a whole, but that also provides some detail on how to use the class libraries provided in the Framework. So, please give me your favorite resource, be it book or online site.

+1  A: 

MSDN: Microsoft Developer Network

Ed Brown
+2  A: 

Beside MSDN, these books can help on your way to enlightenment

aku
Really appreciate the info on the SLAR books -- din't know they existed.
Cyberherbalist
+5  A: 

CLR via C#, Second Edition

Nescio
Strongly agree with this choice
Dave Moore
A: 

www.SearchDotNet.com

You will never know everything that's in the .net framework, all you can hope for is to be able to know when it should be somewhere in there.

When you are starting to write any code that feels like someone else has to have written it already, search for it online and you'll probably find where it is.

Eric Haskins
+1  A: 

I like the 70-536 book from microsoft press. This is for .net 2.0 but it still is a good reference

Tom Alderman
A: 

during your lunchbreak every day, take 5 minutes to look at a new namespace in msdn. what classes are in the namespace? what might they be used for?

therealhoff