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; }
Up to you. Do what's best for readability or makes sense in your case. I mark them as private just to make it clear though.