Are there any suggestions for developing a C# coding standards / best practices document?

C#StandardsProcedure

C# Problem Overview


I'm a recent AI graduate (circa 2 years) working for a modest operation. It has fallen to me (primarily as I'm the first 'adopter' in the department) to create a basic (read useful?) C# coding standards document.

I think I should explain that I'm probably the most junior software engineer going, but I'm looking forward to this task as hopefully I might actually be able to produce something half usable. I've done a pretty extensive search of the Internet and read articles on what a coding standards document should / should not contain. This seems like a good as place as any to ask for some suggestions.

I realise that I am potentially opening a door to a whole world of disagreement about 'the best way to do things'. I both understand and respect the undeniable fact that each programmer has a preferred method of solving each individual task, as a result I'm not looking to write anything so draconianly proscriptive as to stifle personal flair but to try and get a general methodology and agreed standards (e.g. naming conventions) to help make individuals code more readable.

So here goes .... any suggestions? Any at all?

C# Solutions


Solution 1 - C#

We start with

and then document the differences from and additions to that baseline.

Solution 2 - C#

IDesign has a C# coding standards document that is commonly used. Also see the Framework Design Guidelines 2nd Ed.

Solution 3 - C#

Ironically setting the actual standards are likely to be the easy part.

My first suggestion would be to elicit suggestions from the other engineers about what they feel should be covered, and what guidelines they feel are important. Enforcing any kind of guidelines requires a degree of buy-in from people. If you suddenly drop a document on them that specifies how to write code you'll encounter resistance, whether you're the most junior or senior guy.

After you have a set of proposals then send them out to the team for feedback and review. Again, get people to all buy into them.

There may already be informal coding practices that are adopted (e.g prefixing member variables, camelcase function names). If this exists, and most code conforms to it, then it will pay to formalize its use. Adopting a contrary standard is going to cause more grief than it's worth, even if it's something generally recommended.

It's also worth considering refactoring existing code to meet the new coding-standards. This can seem like a waste of time, but having code that does not meet the standards can be counter-productive as you will have a mish-mash of different styles. It also leaves people in a dilemma whether code in a certain module should conform to the new standard or follow the existing code style.

Solution 4 - C#

I have always used Juval Lowy's pdf as a reference when doing coding standards / best practices internally. It follows very close to FxCop/Source Analysis, which is another invaluable tool to make sure that the standard is being followed. Between these tools and references, you should be able to come up with a nice standard that all your developers won't mind following and be able to enforce them.

Solution 5 - C#

The other posters have pointed you at the baseline, all I would add is make your document short, sweet, and to the point, employing a heavy dose of Strunk and White to distinguish the "must haves" from the "it would be nice ifs".

The problem with coding standards documents is that nobody really reads them like they should, and when they do read them, they don't follow them. The likelihood of such a document being read and followed varies inversely with its length.

I agree FxCop is a good tool but too much of this can take all the fun right out of programming, so be careful.

Solution 6 - C#

Never write your own coding standards use the MS ones (or the Sun ones or ... as appropriate for your language). The clue is in the word standard, the world would be a much easier place to code in if each organization hadn't decided to write their own. Who really thinks learning a new set of 'standards' each time you change teams/projects/roles is a good use of anyone's time. The most you should ever do is summarize the critical points but I'd advise against doing even that because what is critical varies from person to person. Two other points I'd like to make on coding standards

  1. Close is good enough - Changing code to follow coding standards to the letter is a waste of time as long as the code is close enough.
  2. If you're changing code you didn't write follow the 'local coding standards', i.e. make your new code look like the surrounding code.

These two points are the reality to my wish that everybody would write code that looked the same.

Solution 7 - C#

I found the following documentation very helpful and concise. It comes from the idesign.net site and it is authored by Juval Lowy

C# Coding Standard

NB: the above link is now dead. To get the .zip file you need to give them your email address (but they won't use it for marketing... honestly) Try here

Solution 8 - C#

I would add Code Complete 2 to the list (I know Jeff is kind of a fan here)... If you are a junior developer, the book comes in handy to set up your mind in a way that sets the foundation for the best code writing practices and software building there are.

I have to say that I came to it a bit late in my career, but it rules a lot of the ways I think about coding and framework development in my professional life.

It's worth checking out ;)

Solution 9 - C#

I've just started at a place where the coding standards mandate the use of m_ for member variables, p_ for parameters and prefixes for types, such as 'str' for strings. So, you might have something like this in the body of a method:

m_strName = p_strName;

Horrible. Really horrible.

Solution 10 - C#

Microsoft's own rules are an excellent starting point. You can enforce them with FxCop.

Solution 11 - C#

I would be tempted to enforce Microsoft's StyleCop as the standard. It can be enforced at the build time. but if you have legacy code then just enforce using StyleCop on new code.

http://code.msdn.microsoft.com/sourceanalysis

Eventually it will have a refactor option to cleanup code.

http://blogs.msdn.com/sourceanalysis/

Solution 12 - C#

Personally I like the one that IDesign has put together. But that's not why I'm posting...

The tricky bit at my company was taking all the different languages into account. And I know my company isn't alone on this. We use C#, C, assembly (we make devices), SQL, XAML, etc. Although there will be some similarities in standards, each is usually handled differently.

Also, I believe that higher level standards have a greater impact on the quality of the final product. For example: how and when to use comments, when exceptions are mandatory (e.g. user initiated events), whether (or when) to use exceptions vs. return values, what is the objective way to determine what should be controller code vs presentation code, etc. Don't get me wrong, low level standards are also needed (formatting is important to readability!) I just have a bias towards overall structure.

Another piece to keep in mind is buy-in and enforcement. Coding standards are great. But if nobody agrees with them and (probably more importantly) no one enforces them then it's all for naught.

Solution 13 - C#

As I wrote both the one published for Philips Medical Systems and the one on http://csharpguidelines.codeplex.com I might be a bit biased, but I have more than 10 years on writing, maintaing and the promotion of coding standards. I've tried to write the one CodePlex with differences in opinions in mind and spent the majority of the introduction on how to deal with that in your particular organisation. Read it and provide me with feedback.....

Solution 14 - C#

SSW Rules

It includes some C# standards + a whole lot more.... primarily focused at Microsoft developers

Solution 15 - C#

> You are most likely being set up to fail. Welcome to the industry.

I disagree - so long as he creates the document, the worst that can happen is that it gets forgotten by everyone.

If other people have issues with the content, then you can ask them to update it to show what they'd prefer. That way it's off your plate, and the others have the responsibility to justify their changes.

Solution 16 - C#

I have recently found Encodo C# Handbook, which includes ideas from many other sources (IDesign, Philips, MSDN).

Another source may be Professional C#/VB .NET Coding Guidelines.

Solution 17 - C#

I'm a big fan of the Francesco Balena book "Practical Guidelines and Best Practices for VB and C# Developers".

It's very detailed and covers all the essential topics, It doesn't just give you the rule, but also explains the reason behind the rule, and even provides an anti-rule where there could be two opposing best practices. The only downside is that it was written for .NET 1.1 developers.

Solution 18 - C#

Solution 19 - C#

Our entire coding standard reads roughly, "Use StyleCop."

Solution 20 - C#

I have to suggest the dotnetspider.com document.
It is a great and detailed document that is useful anywhere.

Solution 21 - C#

I've used Juval's before and that's through if not overkill, but I'm lazy and now just conform to the will of Resharper.

Solution 22 - C#

You can check out this,Top 7 Coding Standards & Guideline Documents For C#/.NET Developers http://www.amazedsaint.com/2010/11/top-6-coding-standards-guideline.html hope this helps

Solution 23 - C#

I think I echo the other comments here that the MS guidlines already linked are an excellent starting point. I model my code largely on those.

Which is interesting because my manager has told me in the past that he is not too keen on them :D

You have a fun task ahead of you my friend. Best of luck, and please ask if you need anything more :)

Solution 24 - C#

The standard from Philips Medical Systems is well written, and mostly follows Microsoft guidelines: www.tiobe.com/content/paperinfo/gemrcsharpcs.pdf

My standards are based on this with a few tweaks, and some updates for .NET 2.0 (the Philips standard is written for .NET 1.x so is a bit dated).

Solution 25 - C#

Solution 26 - C#

In the code I write I usually follow .NET Framework Design Guidelines for publicly exposed APIs and Mono Coding Guidelines for private member casing and indentation. Mono is an open source implementation of .NET, and I think those guys know their business.

I hate how Microsoft code wastes space:

try
{
    if (condition)
    {
        Something(new delegate
        {
            SomeCall(a, b);
        });
    }
    else
    {
        SomethingElse();
        Foobar(foo, bar);
    }
}
catch (Exception ex)
{
    Console.WriteLine("Okay, you got me");
}

What you might find strange in Mono guidelines, is that they use 8-space tabs. However, after some practice, I found that it actually helps me writing less tangled code by enforcing a kind of indentation limit.

I also love how they put a space before opening parenthesis.

try {
        if (condition) {
                Something (new delegate {
                        SomeCall (a, b);
                });
        } else {
                SomethingElse ();
                Foobar (foo, bar);
        }
} catch (Exception ex) {
        Console.WriteLine ("Okay, you got me");
}

But please, don't enforce anything like that if your coworkers dislike it (unless you are willing to contribute to Mono ;-)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTK.View Question on Stackoverflow
Solution 1 - C#ESVView Answer on Stackoverflow
Solution 2 - C#denis phillipsView Answer on Stackoverflow
Solution 3 - C#Andrew GrantView Answer on Stackoverflow
Solution 4 - C#Dale RaganView Answer on Stackoverflow
Solution 5 - C#user2189331View Answer on Stackoverflow
Solution 6 - C#David HayesView Answer on Stackoverflow
Solution 7 - C#Abel GaxiolaView Answer on Stackoverflow
Solution 8 - C#samiqView Answer on Stackoverflow
Solution 9 - C#jessicaView Answer on Stackoverflow
Solution 10 - C#KeithView Answer on Stackoverflow
Solution 11 - C#user18443View Answer on Stackoverflow
Solution 12 - C#derGralView Answer on Stackoverflow
Solution 13 - C#Dennis DoomenView Answer on Stackoverflow
Solution 14 - C#Adam CoganView Answer on Stackoverflow
Solution 15 - C#Adam VView Answer on Stackoverflow
Solution 16 - C#alexandrulView Answer on Stackoverflow
Solution 17 - C#uriniView Answer on Stackoverflow
Solution 18 - C#Pradeep Kumar MishraView Answer on Stackoverflow
Solution 19 - C#John KraftView Answer on Stackoverflow
Solution 20 - C#the_drowView Answer on Stackoverflow
Solution 21 - C#kennyView Answer on Stackoverflow
Solution 22 - C#ElaineView Answer on Stackoverflow
Solution 23 - C#Rob CooperView Answer on Stackoverflow
Solution 24 - C#JoeView Answer on Stackoverflow
Solution 25 - C#Kamran ShahidView Answer on Stackoverflow
Solution 26 - C#Dan AbramovView Answer on Stackoverflow