文件名称: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
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.