文件名称:CsharpDevelopmentCodingStandard
介绍说明--下载内容均来自于网络,请自行研究使用
C#开发编码规范
注记:
Pascal 大小写形式——所有单词第一个字母大写,其他字母小写。
Camel(驼峰标识) 大小写形式——除了第一个单词,所有单词第一个字母大写,其他字母小写。
类名使用Pascal大小写形式
public class HelloWorld
{
…
}
方法使用Pascal大小写形式
public class HelloWorld
{
void SayHello(string name)
{
…
}
}
-C# Developer Coding Standards Note: Pascal case forms- the first letter of every word capital, the other letters lowercase. Camel (Hump logo) case forms- in addition to the first word, capitalize the first letter of all words, the other letters lowercase. Pascal case class name use the form public class HelloWorld (...) ways to use Pascal case the form of public class HelloWorld (void SayHello (string name) (...))
注记:
Pascal 大小写形式——所有单词第一个字母大写,其他字母小写。
Camel(驼峰标识) 大小写形式——除了第一个单词,所有单词第一个字母大写,其他字母小写。
类名使用Pascal大小写形式
public class HelloWorld
{
…
}
方法使用Pascal大小写形式
public class HelloWorld
{
void SayHello(string name)
{
…
}
}
-C# Developer Coding Standards Note: Pascal case forms- the first letter of every word capital, the other letters lowercase. Camel (Hump logo) case forms- in addition to the first word, capitalize the first letter of all words, the other letters lowercase. Pascal case class name use the form public class HelloWorld (...) ways to use Pascal case the form of public class HelloWorld (void SayHello (string name) (...))
(系统自动生成,下载前可以参看下载内容)
下载文件列表
CsharpDevelopmentCodingStandard.doc