Labels in C#

Labels are program elements that simply identify a location in a program. Their only practical use is to support the goto statement. The goto statement allows program control to
jump to the place where a label is defined. A label is any valid identifier followed by a colon (not a semicolon).
原文地址:https://www.cnblogs.com/taoxu0903/p/1670639.html