Naming Guidelines for fields does not match
BenjaminMichaelis opened this issue · 2 comments
BenjaminMichaelis commented
specifically static fields with s_ and thread static fields with t_. A few other minor things as well
Keboo commented
This is a guideline of MS that we want to ignore. Even in the latest versions of the .NET libraries this standard is not followed.
In many cases this also doesn't matter as the guidance is to use auto properties rather than fields so the prevalence of fields is significantly reduced.
adamskt commented
We explicitly don't want to follow Microsoft's guidelines here, as they don't even follow them themselves. We also want to stay congruent with the Essential C# book.