views:

527

answers:

5

Duplicate of: Naming Conventions in C#

Where can I find the most common and up to date coding conventions for C#?

+5  A: 

FxCop is a good place to start

http://msdn.microsoft.com/en-us/library/bb429476.aspx

Tim
+2  A: 

Brad Abrams has a blogpost here.

You can find Microsoft's Design Guidelines for Developing Class Libraries here.

YonahW
+1  A: 

The MSDN is the best one. BUt you can find some shorter version at csharpfriends.com

Daok
A: 

We have an in house coding standard, but it is at least 95% the same as the one that IDesign published. Honestly, it is a great read for any c# developer, even if you already have your own standards.

Matt Briggs
+1  A: 

The IDesign.net coding standard document available at

http://www.idesign.net/idesign/download/IDesign%20CSharp%20Coding%20Standard.zip [PDF]

is a well written and easy to read document that is in line with Microsoft standards. I recommend it as a starting point for your coding standards.

Rob Prouse