As far as I know, in C# all fields are private for default, if not marked otherwise.
class Foo { private string bar; } class Foo { string bar; }
Yes they are equal but I like to mark private variables as private, I think it improves reading.
also I use this common notation for private members, it's very useful :
private string _bar;