For some reason the company I work for enforces Hungarian Notation. I know this is not a correct convention and increases the difficulty for reading the code. However this still enforce it. Since i cannot find anything i ask you this question.
Example of the Hungarian Notation:
string sName = "Hans";
integer iAge = 57;
Boolean bAdult = true;
DateTime dtBirth = new DateTime(15,5,1984);
Float fBudger = 4500,20;
Is it possible to enforce this using VS17 .editorconfig?
Or am I able to enforce this by using another method?
I searched for this in Microsofts documentation of .editorconfig and i searched for anything related to this on stack overflow.
I also checked the options>Text Editor but did not find anything related there either.
PS: Possibly this is also fitting as a Superuser question. However this is written in XML