Considering \"private\" is the default access modifier for class Members, why is the keyword even needed?
I usually leave private out but I find it useful for lining up code:
private int x; public string y; protected float z;
VS:
int x; public string y; protected float z;