摘要:
实例代码: 1 using System; 2 using System.Collections; 3 4 public class List 5 { 6 7 //来源: http://hi.baidu.com/jiang_yy_jiang 8 public static IEnumerable Power(int number, int exponent) 9 {10 int counter = 0;11 int result = 1;12 while (counter++ < exponent)13 ... 阅读全文
摘要:
1.在执行*.bat文件时,可以在其中加入 pause 来暂停执行。 阅读全文