In the java world a commonly accepted convention for naming constants is to use uppercase letters with words separated by underscores ("_"): MIN_DATE, MAX_DATE, etc. In the .Net world however the official recommendation is to use PascalCase to name constants
Read More...