I started reading "Code Complete" book and found it very interesting and good book. But it focused on C++ and there is no mention of C# (apparently because it was written before C#). Is there any similar book with emphasis on C#?

link|improve this question

69% accept rate
4  
It doesn't focus on C++, either. It's not supposed to teach you a programming language, it's supposed to teach you the big picture. Better read it again; sounds like you missed that. – Cody Gray Mar 11 '11 at 9:53
feedback

3 Answers

up vote 6 down vote accepted

Code complete teaches best practise and as such is really language agnostic. Don't focus on the language used, rather the concepts and ideals being discussed.

EDIT: It sounds like you may also have only the 1st edition of the book, rather than the 2nd edition. Comments on the 2nd edtion:

"This new edition features fully updated information on programming techniques, including the emergence of Web-style programming, and integrated coverage of object-oriented design. You'll also find new code examples--both good and bad--in C++, Microsoft(r) Visual Basic(r), C#, and Java, though the focus is squarely on techniques and practices. "

link|improve this answer
1  
Very sharp to note he might be reading the 1st edition, however. The first edition was published back in 1993 (the second in 2004). I could hardly believe he would be reading the first one. Still Darren++ for that :-) – Steven Mar 11 '11 at 14:32
1  
@Steven, thanks - and you would be surprised, one of my colleagues has the first edition on their desk :) I pickedup on it because he said the book was written pre C#. – Darren Young Mar 11 '11 at 15:20
I am reading second edition: ISBN: 0-7356-1967-0, but there is no mention of C# in it. – mans Mar 12 '11 at 10:10
feedback

I believe the concepts and elements you would learn from that very nice book are not related to skills on a particular language, once you learn those concepts you would be able to code better in any language. Same for the twin book Secure Code.

link|improve this answer
feedback

I agree with Darren Young that Code Complete covers the whole spectrum of software development. Especially the first part of the book is language agnostic. When it comes to the language specific parts of the (2nd edition) book (chapters 6 till I think 15 or 16), grab a copy of Clean Code. Clean Code focuses solely around writing readable, maintainable code, where Code Complete focuses on the complete development process (including writing good code). Clean Code gives the code examples in Java, but you'll find the samples very similar to what you would write in C#. Besides that, the advice given in Clean Code about writing good code is even better than that of Code Complete.

Seriously: Clean Code is a must read for every professional developer.

link|improve this answer
1  
+1 for the Clean Code recommendation. Will be Amazoning(sic) it over the weekend. – Darren Young Mar 11 '11 at 15:21
feedback

Your Answer

 
or
required, but never shown

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