vote up 8 vote down star
2

what book would you recommend to improve one's c# style of writing? I know Code Complete has a few tips on style and organizing code but it's not specific to c#.

flag

54% accept rate

7 Answers

vote up 0 vote down

C# Concisely very thorough

link|flag
vote up 6 vote down

Not a book, but check out StyleCop

link|flag
+1- that was going to be my answer, but you'd already answered it. – RichardOD Aug 21 at 10:34
vote up 3 vote down

MSDN has some good guidelines for developing C# classes.

link|flag
These are essentialy an online version of what's in the Framework Design Guidelines book without the "annotations" contained in the book. – Scott Dorman Aug 14 at 19:36
vote up 14 vote down

Framework Design Guidelines, 2nd Edition.

link|flag
3  
+1 - This is a DEFINITE requirement for anybody who either gets paid to developer .NET code or whose code may have to be maintained by someone else. – Yoooder Aug 14 at 18:18
vote up 2 vote down

CLR Via C# by Jeffrey Richter contains all the 2.0 patterns you need to follow in order to produce good code. Helped me immensely.

link|flag
vote up 5 vote down

Have a look at the iDesign coding standards at: http://www.idesign.net/idesign/DesktopDefault.aspx

link|flag
Juval's style is a solid baseline. The book "Programming .NET Components" is also fairly high on my "must-read" .NET books. It's got lots of good advice on style and practices. – Yoooder Aug 14 at 18:17
vote up 2 vote down

Effective C# by Bill Wagner, as well as the sequel, More Effective C#.

link|flag

Your Answer

Get an OpenID
or

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