C# 命名规则
Code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/*
* C Sharp 命名规则总结,详情参考C#高级编程第六版第61页。
*
* 基本上是统一采用camel(驼峰)命名方法,个人建议,
* 类名,方法名,变量名等只用字母,数字,下划线(_)组成
*
* @author Daniel Qin <nevernet@msn.com>
* @Date 2008-12-8
*
* */
namespace TestConsole
{
public class CSRules
{
//私有字段,一般用下划线开头,第一个单词的字母小写,
//之后每个单词的第一个字母大写
private int _userId;
//属性,每个单词的第一个字母大些,该命名方式同方法的命名方式。
public int UserId
{
set
{
_userId = value;
}
get
{
return _userId;
}
}
//同属性的命名方式
public void HelloWorld()
{
//局部变量,无下划线开头,第一个单词的第一个字母小写,
//之后每个单词的第一个字母大写。
string wordsStirng = "Hello World!";
Console.WriteLine(wordsStirng);
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/*
* C Sharp 命名规则总结,详情参考C#高级编程第六版第61页。
*
* 基本上是统一采用camel(驼峰)命名方法,个人建议,
* 类名,方法名,变量名等只用字母,数字,下划线(_)组成
*
* @author Daniel Qin <nevernet@msn.com>
* @Date 2008-12-8
*
* */
namespace TestConsole
{
public class CSRules
{
//私有字段,一般用下划线开头,第一个单词的字母小写,
//之后每个单词的第一个字母大写
private int _userId;
//属性,每个单词的第一个字母大些,该命名方式同方法的命名方式。
public int UserId
{
set
{
_userId = value;
}
get
{
return _userId;
}
}
//同属性的命名方式
public void HelloWorld()
{
//局部变量,无下划线开头,第一个单词的第一个字母小写,
//之后每个单词的第一个字母大写。
string wordsStirng = "Hello World!";
Console.WriteLine(wordsStirng);
}
}
}