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; }
This is purely a coding standards question but, for what it's worth, I always explicitly mark private members as private.