`
zheyiw
  • 浏览: 999514 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

C#代码 命名规范

    博客分类:
  • C#
c# 
阅读更多

Pascal 大小写形式-所有单词第一个字母大写,其他字母小写。
Camel  大小写形式-除了第一个单词,所有单词第一个字母大写,其他字母小写。

·  类名使用Pascal 大小写形式
public class HelloWorld{ ...}
 

·  方法使用Pascal 大小写形式
public class HelloWorld{ 
	void SayHello(string name) {  ... }
}


·  变量和方法参数使用Camel 大小写形式
public class HelloWorld{ 
	int totalCount = 0; 
	void SayHello(string name) {  
		string fullMessage = "Hello " + name;  ... 
	}
} 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics