| 1. | Private access is the least permissive access level 私有访问是允许的最低访问级别。 |
| 2. | Has private access 具有私有访问级别。 |
| 3. | A class defined with private access is not visible to users of your assembly 用私有访问定义的类对程序集的用户是不可见的。 |
| 4. | A private accessor is a method that the test method uses to access the private code 私有访问器是测试方法用于访问私有代码的方法。 |
| 5. | When you generate a unit test for a private method , a private accessor is automatically created 生成私有方法的单元测试时,将自动创建一个私有访问器。 |
| 6. | The unit test generates a call to the private accessor , and then calls the private method through the private accessor 单元测试生成对私有访问器的调用,然后通过私有访问器来调用私有方法。 |
| 7. | The private accessor resides in a file that is part of your test project ; therefore it is compiled into your test project assembly 私有访问器驻留在测试项目中的文件中;因此将被编译为测试项目程序集。 |
| 8. | Class and module member variables outside any procedure default to private access , and structure member variables default to public access 类和模块成员变量(位于所有过程之外)默认为私有访问,而结构成员变量默认为公共访问。 |
| 9. | Class and module member constants outside any procedure default to private access , and structure member constants default to public access 类和模块成员常数(在任何过程的外部)默认为私有访问,而结构成员常数则默认为公共访问。 |
| 10. | As with the file that contains private accessors , the file that contains unit tests is also visible in your test project in solution explorer 与包含私有访问器的文件类似,包含单元测试的文件在解决方案资源管理器中的测试项目中也可见。 |