-
Notifications
You must be signed in to change notification settings - Fork 2
Coding Conventions
williamlixu edited this page Oct 11, 2019
·
3 revisions
Basically, we follow this guide here. These rules generally follow Visual Studio defaults. The most important parts are highlighted below.
- Fields follow
_camelCase
(with the underscore). Properties are inPascalCase
. - Braces start on a new line (this is different from typical Java conventions). This is the common convention for C#. For example:
if (x == y)
{
doSomething();
}
- General
- Design
- Prototype
- Final Submission