하나.식별자 및 키워드

2074 단어
1. 식별자
using System;
namespace WelcomeYou
{
    //"   “      
    class Program
    {
        static void Main(string[] args)
        {
            //        
            string welcomeText = "   ";
            //          
            Console.WriteLine(welcomeText);
            //            ,   
            Console.ReadKey();
        }
    }
}


Welcome You, Program, Main,welcome Text와 같이 표지부호에 대해 (주의해야 할 것은 습관적으로 c# 변수명은 낙타봉법으로 명명하고 다른 것은 파스카법으로 명명한다).
ps: 낙타봉법: 첫 단어는 알파벳 소문자, 뒤에 있는 단어는 알파벳 대문자.파스카법: 첫 번째 단어는 알파벳 대문자, 뒤에 있는 단어는 알파벳 대문자.
식별자는 숫자의 시작을 허용하지 않습니다. 시작은 이어야 합니다또는 문자로 시작합니다(중국어 문자 포함).식별자는 키워드와 같을 수 없습니다. 만약 키워드를 식별자로 사용하려면 앞에 @를 붙여야 합니다. 예를 들어 @class.습관에 따라 표지부의 명칭은 의미가 있어야 한다.
2. 키워드
C#에서 키워드 일은 식별자로 존재할 수 없습니다.앞의 코드에서namespace,class,static,string은 모두 키워드입니다.공식 문서
C#에 일반 키워드 77개
abstract
as
base
bool
break
byte
case
catch
char
checked
class
const
continue
decimal
default
dekegate
do
double
else
enum
event
explicit
extern
false
finally
fixed
float
for
foreach
goto
if
implicit
in
int
interface
internal
is
lock
long
namespace
new
null
object
operator
out
override
params
private
protected
public
readonly
ref
return
sbyte
sealed
short
sizeof
stackalloc
static
string
struct
switch
this
throw
true
try
typeof
unit
ulong
unchecked
unsafe
ushort
using
virtual
void
volatile
while
그리고 25개의 상하문 키워드가 있어요.
add
alias
ascending
async
await
descending
dynamic
from
get
global
group
into
join
let
orderby
partial (type)
partial (method)
remove
select
set
value
var
where
where
yield

좋은 웹페이지 즐겨찾기