标签:loop dex key test OLE csharp read index ++
语法结构
while(<test>){
<code to be looped>
}
使用while输出 1-9
int index = 1; while (index<=9) { Console.WriteLine(index);//1 2 3 4 5 6 7 8 9 index++; } Console.ReadKey();
标签:loop dex key test OLE csharp read index ++
原文地址:https://www.cnblogs.com/wuxiaohui1983/p/9969738.html