Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Best C# Book For An Experienced Programmer

I've been programming with C++ quite a while, but my company decided to use C#/.NET for the next project. So, I have to learn nuts and bolts about C#/.NET.

What would be the best C# programming book for C++ programmer? I guess I don't need the 'C# for dummies' series.

share|improve this question
4  
Community wiki? – Filip Ekberg Jun 4 '10 at 13:36
Duplicate: stackoverflow.com/questions/531329/… – gnovice Jun 4 '10 at 14:37

marked as duplicate by Filip Ekberg, Joren, gnovice, Jeff Atwood Jun 5 '10 at 6:37

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

9 Answers

up vote 11 down vote accepted

Charles Petzold has a book called .NET Book Zero specifically aimed at this audience. You can download a PDF version of the book on that link. If you don't know Charles Petzold is the author of the books Programming Windows *, which has been the authoritative source for Windows programming since Windows 3.1, and DOS before that.

If you have done a little bit of C# but not much Jon Skeet's book C# in Depth is a great choice and highly recommended. If you don't know Jon Skeet is the #1 user on stackoverflow and micro-celebrity here.

share|improve this answer
1  
+1 for mentioning Petzold. The MSDN docs assume you've read Petzold, IMHO. It also looks like Jon Skeet is of Petzold level of awesome. – J. Polfer Jun 4 '10 at 13:39

If you know little bit of C# better to go with Jon Skeet's csharpindepth

or

Head First C#

share|improve this answer
Head First C# is a great starting point to build your foundation, then move-up to books like Jon's. – Zamboni Jun 4 '10 at 13:53

If you know C++, your transition to C# will be pretty straightforward as the syntax is largely the same. Still, there are some gotchas that you need to be aware of.

For example, in C++, classes and structs are the same except for the default visibility level (private for classes, public for structs). In C#, classes are reference types while structs are value types.

You will never go wrong with anything Jon Skeet has written on C#. For me, though, I have found Bill Wagner's Effective C# series to be extremely valuable.

As far as all-purpose C# reference books, I really like Andrew Troelsen's book Pro C# 2010 and the .NET 4.0 Platform, now in its fifth edition.

share|improve this answer

I liked Pro C# 2008 and the .NET 3.5 Platform by Andrew Troelsen, but now you might want to look for something that covers .NET 4.0.

share|improve this answer

Pro C# 2008 and the .NET 3.5 Platform is a favorite, and I saw the headfirst series mentioned which is very good as well.

While flipping through that peek at a book on linq to get a taste of what goodies C# has waiting around the corner.

It may not be a book but the tekpub series (free!) http://www.tekpub.com/production/concepts holds some good information to get your feet wet in C#.

share|improve this answer

Essential C# 4.0 (3rd Edition) is a cross between a reference and a teaching book assuming you are already a programmer. It ought to suite your skill set nicely.

If there's only 1 book you read I'd recommend this one.

share|improve this answer

CLR via C#. Great book, especially for an experienced programmer.

share|improve this answer

As an experienced C++ programmer, the official MSDN Library docs for .NET and C# worked just fine for me.

For specific areas of the .NET library, I can see how other books could do much better at explaining, but for the C# language itself, I didn't feel a need for anything better.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.