I\'ll prefix by saying that I understand that both Code Analysis and StyleCop are meant as guidelines, and many people chose to ignore these anyway. But having said that, I
public class SomeClass
{
private int namedField { get; set; }
public SomeClass(int differentlyNamedField)
{
this.namedField = differentlyNamedField;
}
}