What is the use of the private keyword if everything, by default, is private?
public class A {
object someObject;
private object someOtherObject;
}
Wouldn't both of the above be private? If they're both private then why the need for the keyword itself?