Because of these two KB articles, I am confused:
- CA1704: Identifiers should be spelled correctly
- CA1709: Identifiers should be cased correctly
I have a property named ICD9
. My code analysis says that I have to change it to Icd
That sounds reasonable to me. I go and change it to Icd9
(I am not sure why it's suggesting Icd
not Icd9
) and I get a different warning
The KB says if my acronym is three-letter long I should use Pascal casing. Isn't Icd9
Pascal cased? I feel that 9
has causing the issue.