In a recent post I pointed out to a tool introduced by Scott. This tool is Code Style Enforcer that is actually a plugin for DxCore and guides you write your codes in standard way. The coding rules in this tool is based on what IDesign has defined. Personally I'm among those programmers which coding standards is so important to them, so this tool seems to be amazing for me but in my first use I found out that many automatic namings that Visual Studio performs for you is not standard!
For example the first alert your will receive from CSE in an ASP.NET code behind source is Page_Load; CSE says that Page_Load has illegal characters and when you fix, it is converted to PageLoad (A Pascal Case name for a protected method).
I think that these naming conventions are same to what Microsoft suggests, so what is the reason of this automatic namings in VS ?
What do you think?
Subscribe in a reader