The Pascal case should be used when they print the types and values โโof an enumeration. It looks like
public enum Ati
{
Two = 0,
Three = 1,
Five = 2,
}
According to Microsoft:
Identifier | Case | Example
--------------------------------------------
Enumeration type | Pascal | ErrorLevel
Enumeration values | Pascal | FatalError
The only thing you should do is constant / final variables.
If you have local variables, you should always use the camel case.
thisIsCamelCasedVariable = "ya baby";
More about transfers: https://msdn.microsoft.com/en-us/library/4x252001(v=vs.71).aspx
More on C # naming conventions: https://msdn.microsoft.com/en-us/library/ms229043%28v=vs.100%29.aspx