program.cs
来自「c#开发宝典 光盘内容。本光盘主要为书中的源程序」· CS 代码 · 共 21 行
CS
21 行
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace Example3_18 {
class Program {
static void Main(string[] args) {
label1:
int a = 10;
goto label3;
label2:
Console.WriteLine("The value of int a is : {0}", a);
goto label1;
label3:
a += 10;
goto label2;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?