019_关于goto语句。

namespace _019_关于goto语句 {

    class Program {

        static void Main(string[] args)

        {

            int myInteger = 5;

            goto  mylabel;//goto语句用来控制程序跳转到某个标签的位置

            myInteger ++;

            mylabel:Console.WriteLine(myInteger);

            Console.ReadKey();

        }

    }

}

你可能感兴趣的:(019_关于goto语句。)