vote up 2 vote down star
1

Duplicate of: Naming Conventions in C#

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

flag

0% accept rate

closed as exact duplicate by George Stocker Dec 22 '08 at 15:06

5 Answers

vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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

link|flag
vote up 2 vote down

Brad Abrams has a blogpost here.

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

link|flag
vote up 5 vote down

FxCop is a good place to start

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

link|flag

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