As far as I know, private is the default everywhere in C# (meaning that if I don\'t write public, protected, internal>
private
public
protected
internal>
Readability - Not everyone may know that private is the default behaviour.
Intent - Gives a clear indication that you have specifically declared the property private (for whatever reason).