C#命名空间学习笔记
1.采用Pascal风格命名类型、方法和常量:
- publicclassSomeClass
- {
- constintDefaultSize=100;
- publicvoidSomeMethod(){
- }
- }
2.采用camel风格命名局部变量和方法参数:
- voidMyMethod(intsomeNumber)
- {
- intnumber;
- }
3.命名接口时采用I作为前缀:
- interface IMyInterface{
- }
4.命名私有成员变量时采用m_作为前缀,m_后面的部分采用Pascal风格:
- publicclassSomeClass
- {
- privateintm_Number;
- }
5.自定义特性类采用Attribute作为前缀。
6.自定义异常类采用Exception作为前缀。
7.命名方法时使用动宾结构短语,例如ShowDialog()。
8.有返回值的方法应该有能描述其返回值的名称,例如GetObjectState()。
9.采用描述性的变量名。
1)避免单字符的变量名,例如i或t,而是采用index或temp代替。
2)对public和protected成员避免使用匈牙利命名法。
3)不要使用缩写(例如将number缩写为num)。
10.总是使用C#预定义的类型,而不是使用System命名空间中的别名。例如:
objectNOTObject
stringNOTString
intNOTInt32
11.类型名称的首字母通常使用大写。 当处理.NET类型Type时保留后缀Type。
- publicclassLinkedList<K,T>{
- }
- //避免:
- publicclassLinkedList<KeyType,DataType>{
- }
12.使用有意义的C#命名空间,例如产品名或公司名。
13.避免使用完全限定的类型名称,使用using语句代替。
14.避免在C#命名空间内使用using语句。
15.所有框架的C#命名空间都组合在一起,并放在自定义或第三方的C#命名空间下。
- usingSystem;
- usingSystem.Collections.Generic;
- usingSystem.ComponentModel;
- usingSystem.Data;
- usingMyCompany;
- usingMyControls;
【编辑推荐】