Here's what I've found:
"Recent" code in the .NET Framework has used both (though never in the same class, and generally the difference is across teams as a whole - WPF might use something different from Parallel FX (haven't checked if they do), but WPF blending effects would use the same as WPF text rendering).
StyleCop "suggests" using foo as a member field instead of _foo, and referencing it as this.foo inside of class members. The rationale there is:
- Using
this.memberName is clearer than memberName and
- When using
this.memberName, the _ doesn't do anything in regards to identifying the reference as a member field, because the this. already did that. Unndecessary redundancy clutters code, therefore no _ prefix.
I personally, IMO prefer _foo for two reasons that form the rationale for the other method you've observed:
- Reducing the number of aliased names in methods
- I can still keep parameter names with the same (exact) spelling and casing as member fields. With the only change being the underscore, it just seems clearer to me.