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.
|
|
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.
|
||
|
|
|
|
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. |
||||
|
|
|
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. |
||
|
|