Coding Style - BHoM/documentation GitHub Wiki
General standards: tour of C#
Our coding style generally follows the Microsoft guidelines:
https://docs.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/
https://docs.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/classes-and-objects
https://docs.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/types-and-variables
Although, to attain a higher level of clarity and transparency, we also follow some additional rules and style guidelines.
These rules and guidelines are in place to help ensure the code matches what is seen in the UIs, enabling developers to quickly find the portions of code needing examining.
Filenames, objects and methods
- A
.csfile can contain only 1 (one)class, and there is no concept as aHelperorUtilsclass. - For oM objects the name of the
.csfile is the Name (excluding the namespace) of the Object (class), e.g. theLineclass is in theLine.csfile. - For engine methods, a file can only contain methods whose name start or end with the name of their file file, e.g.
Flip(Line line)andFlip(Arc arc)are in the same fileFlip.cs, andFilterPanelsandFilterOpeningscan both reside inside aFilter.csfile.
Folders and namespaces
Namespaces and the folder structure that contains the .cs files have a close relationship. To define the correct folder structure helps keeping the relationship with the namespaces. This, in turn enables additional functionalities, such as deriving the web address of the source code of a method.
For a Class, an Attribute, an Enum, and an Interface, the folder structure respects the following rules:
-
If a file is in a sub folder, the namespace of the entity must follow: if
Baris in a sub folderElements, its namespace must suffix theElementswordBH.oM.Structure.Elements. -
An
Enummust be in a separate folderEnums. Although, the namespace remains unchanged, and does not follow - i.e.Enumsis appended as suffix. For exampleBarFEATypeis in the sub folderElements, and it is anenum. Its namespace respects A., so it contains theElementsword, but does not contain theEnumword: BH.oM.Structure.Elements. At the same time, since it is anEnumit is in anEnumsfolder. -
The same rule as B. applies to:
Attribute=>AttributesInterface=>Interfaces
Enum ordering
The order an Enum is written is the order in which it is displayed in the UI dropdown options. This order is therefore important to the UX of using the Enum within a workflow. The order should therefore follow one of the following conventions. There may be occasions when an Enum order does not follow the conventions below. These occasions should be clearly documented with the reasons why a different convention has been followed.
Alphabetical
The order of the Enum should be alphabetical (following British-English spelling conventions) in ascending order (i.e. A-z).
Caveat for Undefined
If your Enum option has an Undefined option to denote a default unset option, then this should go as the first option at the top of the Enum.
For an example of an Enum following this convention, see the Environment Panel Type Enum.
Logical
The order of the Enum can be in a logical order instead where this makes more sense than alphabetical. An example of such an Enum might be one that records the size of an object. In this case, the options might be:
ExtraSmall
Small
Normal
Large
ExtraLarge
This order for the Enum makes logical sense and provides a good UX where users will have context from the name of the Enum that the order might be different to alphabetical (e.g. the name might be UnitSize).