If you open up R# options and go to Code Editing> C# > Naming Style there are 2 settings that seem very similar to me. Local constants and Constant Fields (private). One is to lowerCaseCamel and the other UpperCamelCase.
I noticed this because previously R# suggested I change all of my in-method variables to constants starting with a capital, however now it is telling me to set them all to lower case (I had done a lot of tweaking around with R# and trying to implement some workarounds to a bug etc, however I do not believe I changed anything in this section).
So what are the differences between the 2 settings?
Also since we are on the top of it, what is the R# default setting for each and is there a non-opinion based (e.g. Microsoft specification) for how to set each setting?
What is stated in C# naming convention for constants? does appear to conflict a little with what is stated in Should a local const variable start with Upper or lower casing, so I'm looking for an answer based on what R#/Microsoft recommendations not an opinion based answer.