C# 编程/关键字/switch
外观
< C Sharp 编程 | 关键字
switch
语句是一种控制语句,它通过将控制权传递到其主体内的case语句之一来处理多个选择和枚举。
这是一个 switch 语句的示例
int currentAge = 18;
switch (currentAge)
{
case 16:
Console.WriteLine("You can drive!");
break;
case 18:
Console.WriteLine("You're finally an adult!");
break;
default:
Console.WriteLine("Nothing exciting happened this year.");
break;
}
Console Output You're finally an adult!
C# 关键字 | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
特殊 C# 标识符(上下文关键字) | |||||||||||||||
| |||||||||||||||
上下文关键字(用于查询) | |||||||||||||||
|