2005年12月4日

C#命名规则和开发习惯

摘要: C#命名规则和开发习惯 C# Coding Standard 一、命名 1.用pascal规则来命名方法和类型. public class TextBox { public void DataBind() { } } 2.用camel规则来命名局部变量和方法的参数. string userName; public AddUser(string userId, byte[] pa... 阅读全文

posted @ 2005-12-04 11:45 农民 阅读(352) 评论(0) 推荐(0) 编辑

导航