Coding Convention for C#

Text Cases

Class names in PascalCase: class StringToDisplay
Namespaces in PascalCase: Unity.Behavior
Method names in PascalCase: ToString()
Variable names in camelCase: textToDisplay

Since the rules are complicated, this can be read here again.

Read more about cases here.

Positioning of curly braces

Curly braces ({}) are always on separate lines.