"Only use all upper case for identifiers if it consists of an abbreviation which is one or two characters long, identifiers of three or more characters should use Pascal casing instead. For Example:
1 public class Math
2 {
3 public const PI = ...
4 public const E = ...
5 public const feigenBaumNumber = ...
6 }"
line 5 is camel casing not pascal.
I don't get it.
1 public class Math
2 {
3 public const PI = ...
4 public const E = ...
5 public const feigenBaumNumber = ...
6 }"
line 5 is camel casing not pascal.
I don't get it.