1 2 3 4 5 6 |
public class HelloWorld { public void SayHello(string name) { } } |
Pascal规则是指名称中单词的首字母大写 ,如EmployeeSalary、 ConfimationDialog、PlainTextEncoding。
1 2 3 4 5 6 7 8 9 |
public class Product { private string productId; private string productName; public void AddProduct(string productId,string productName) { } } |
Camel规则类似于Pascal规则 ,但名称中第一个单词的首字母不大写 ,如employeeSalary、 confimationDialog、plainTextEncoding。
不要给成员变量加任何前缀(如、m、s_等等)。如果想要区分局部变量和成员变量,可以使用this
关键字。
1 2 3 4 5 |
// Correct public static const string ShippingType = "DropShip"; // Avoid public static const string SHIPPINGTYPE = "DropShip"; |
I
作前缀 1 2 3 4 |
public interface IConvertible { byte ToByte(); } |
Attribute
结尾 1 2 3 |
public class TableAttribute:Attribute { } |
1 2 3 4 |
public class NullEmptyException:Exception { } |
1 2 3 4 5 6 7 8 9 |
public class Employee { } public class BusinessLocation { } public class DocumentCollection { } |
1 2 3 4 5 6 7 8 9 |
public class File { public void CreateFile(string filePath) { } public void GetPath(string path) { } } |
不要直接用用i
,j
,k
,l
,m
,n
,x
,y
,z
等做变量名,但for循环除外
所有的成员变量声明在类的顶端,用一个换行把它和方法分开。同时可以使用成对的#region...#endregion
标记,方便折叠。
is
、can
、has
或者should
做前缀。如,isFinished, canWork等。{
另起一行,不要直接跟在类名和方法后面。 1 2 3 4 |
public Sample() { // TODO: 在此处添加构造函数逻辑 } |
常见UI组件的一般缩写形式:
1 2 3 4 |
Label --> lbl、Text --> txt、Button --> btn Image --> img、 Widget --> Wgt、 List --> lst、CheckBox --> chk Hyperlink --> lnk、Panel --> pnl、Table --> tab ImageButton --> imb |
==
进行条件判断 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
// 不友好的写法 private bool isFinished = true; if(isFinished == true) { // ... } // 正确的写法 private bool isFinished = true; if(isFinished) { // ... } ``` ### 16. 慎用缩写 变量名是一个单词的尽量不要缩写,多单词组成的变量名可适当缩写。 ### 17. 在类的顶部声明所有的成员变量,静态变量声明在最前面 ```csharp // Correct public class Account { public static string BankName; public static decimal Reserves; public string Number {get; set;} public DateTime DateOpened {get; set;} public DateTime DateClosed {get; set;} public decimal Balance {get; set;} // Constructor public Account() { // ... } } |
如果一个方法超过25行,就需要考虑是否可以重构和拆分成多个方法。方法命名要见名知意,好的方法名可以省略多余的注释。方法功能尽量单一。
补充两条:
from:https://davidsheh.github.io/2016/03/10/C_Sharp%E5%91%BD%E5%90%8D%E8%A7%84%E5%88%99%E5%92%8C%E7%BC%96%E7%A0%81%E8%A7%84%E8%8C%83/