Coding standards
From OpenSimulator
(Difference between revisions)
Line 4: | Line 4: | ||
* Tab themselves should be spaces, not actual hard tabs. | * Tab themselves should be spaces, not actual hard tabs. | ||
* Method names have all their words capitalized (as opposed to Java, which culturally uses camelCase). | * Method names have all their words capitalized (as opposed to Java, which culturally uses camelCase). | ||
+ | * Unless the classes are very trivial, there should be one class per file. | ||
For instance. | For instance. |
Revision as of 11:27, 12 July 2008
Generally speaking
- We put curly brackets on separate lines and use 4 space tabs.
- Tab themselves should be spaces, not actual hard tabs.
- Method names have all their words capitalized (as opposed to Java, which culturally uses camelCase).
- Unless the classes are very trivial, there should be one class per file.
For instance.
public void LazeAroundForAnHour() { Thread.Sleep(3600); }
Otherwise in general, just respect the conventions already being used in the file you're editing (which should often follow the standard C# coding guidelines).