using System;namespace Goto{ /// /// C#中使用goto /// class Program { static void Main() { Console.Title = "C#中使用goto"; UseGoto(); Console.ReadKey(); } static void UseGoto() { // goto语句的用法非常灵活,你可以用它实现很多功能,但是由于goto语句的跳转影响程序的结构,在使用的时候会使人迷茫,所以一般"教材"上都不建议使用, // 但是用它可以实现递归,循环,选择功能,使用起来也很方便,存在即有价值,大家在使用上做适当取舍就好,觉得需要用就用,不必因拘泥而刻意不去用 int i = 0; cc: Console.Write(i + Environment.NewLine); if (i < 9) { i++; goto cc; } Console.Write("Please enter your message:"); string message = Console.ReadLine(); goto P; P: Console.WriteLine("-----------------------------------------------------"); Console.WriteLine(message); } }}