Should constant variable names have a different case? For example, `const string FirstName = "John";` vs `const string firstName = "John";`
Should constant variable names have a different case?
For example,
const string FirstName = "John";vs
const string firstName = "John";