vote up 3 vote down star

If I were to use more than one, what order should I use modifier keywords such as:

public, private, protected, virtual, abstract, override, new, static, internal, sealed, and any others I'm forgetting.

flag

58% accept rate

2 Answers

vote up 5 vote down

If you download the Microsoft StyleCop Visual Studio addin, it can validate your source code against the rules Microsoft use. It likes the access modifier to come first.

link|flag
Excellent answer. When ever possible, let something like StyleCop look after monitoring compliance with style guidelines, as it is so much more reliable than leaving it to us mere humans :) – David Arno Oct 10 '08 at 15:53
StyleCop has rules that seem to differ from MS's prior style guides. For example, StyleCop hates m_ and _ for prefixs to private members. Also, the VS default code generation violates StyleCop by putting using statements outside the namespace. sigh – CrashCodes Feb 20 at 16:21
vote up 2 vote down

I usually start off with the access modifier first, then virtual/abstract/sealed, then override/new/etc. although others might do it differently. Almost invariably, the access modifier will be first, however.

link|flag

Your Answer

Get an OpenID
or

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