关键词
C#具有预定义的关键字(或保留字)集合,每个都具有特殊功能。除非以 @
作为前缀,否则这些单词不能用作标识符(变量,方法,类等的名称)。
abstract
as
base
bool
break
byte
case
catch
char
checked
class
const
continue
decimal
default
delegate
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
uint
ulong
unchecked
unsafe
ushort
using
(指令)using
(声明)virtual
void
volatile
when
while
除此之外,C#还使用一些关键字来提供代码中的特定含义。它们被称为上下文关键字。上下文关键字可以用作标识符,并且在用作标识符时不需要以 @
为前缀。