跳转到内容

C# 编程/关键字/goto

来自维基教科书,开放的书籍,为开放的世界

The goto 关键字将操作流程返回到其后的标签。标签可以通过在任何单词后加冒号来创建。例如

thelabel:       // This is a label
 System.Console.WriteLine("Blah blah blah");
 goto thelabel; // Program flow returns to thelabel

使用 goto 非常有争议,因为,如果随意使用,它会创建从一个地方跳转到另一个地方的代码,这会使代码杂乱无章,难以阅读。它很少有必要,因为通常可以通过更有条理的 for 循环while 循环 来实现相同的功能。



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 var virtual
void volatile while
特殊的 C# 标识符(上下文关键字)
add alias async await dynamic
get global nameof partial remove
set value when where yield
上下文关键字(用于查询)
ascending by descending equals from
group in into join let
on orderby select where
华夏公益教科书