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#?
feedback
|
|
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. " | |||||||||||
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. | |||
|
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. | |||||
feedback
|