如果类前面没有访问修饰符的话,那里面的成员默认是私有private。
下面的代码是从MSDN上拷的,那个d它说明了私有:class Employee{private int i;double d; // private access by default}