C#使用foreach语句遍历堆栈(Stack)的方法
程序员文章站
2022-06-30 11:12:04
本文实例讲述了c#使用foreach语句遍历堆栈(stack)的方法。分享给大家供大家参考。具体如下:
using system;
using system.c...
本文实例讲述了c#使用foreach语句遍历堆栈(stack)的方法。分享给大家供大家参考。具体如下:
using system; using system.collections; public class stacksw3 { static void main(string[] args) { stack a = new stack(10); int x = 0; a.push(x); x++; a.push(x); foreach (int y in a) { console.writeline(y); } a.pop(); a.clear(); } }
希望本文所述对大家的c#程序设计有所帮助。
上一篇: 汉成帝娶亲姑姑为皇后,最后为何将其毒杀?
下一篇: C#画笔Pen用法实例