I have recently started using ReSharper which is a fantastic tool.
Today I came across a naming rule for static fields, namely prefixing with an underscore, i.e.
private static string _myString;
The Microsoft guidelines are silent about private fields, they are only concerned with publicly visible members.
Common conventions are camelCase, _camelCase and even sometimes the hangover from C++/MFC m_camelCase.
If you use camelCase without a prefix, your property backing fields will differ from the property name only in case, which is not a problem in C#, but won't work in a case-insensitive language like VB.NET.
So many people, including myself, like to use an underscore prefix so that the same standards can be used in all languages. In my experience, underscore is much more common than m_.