摘要: static void Main(string[] args) { int[] numbers = new int[] { 3, 2, 21, 3, 3, 23, 4, 43, 23, 23 }; Array.Sort(numbers); Array.ForEach(numbers,Msg);// (i) => Console.WriteLine(i)); Console.ReadKey(); } static void Msg(int ... 阅读全文
posted @ 2014-02-28 14:23 银河系上的地球 阅读(375) 评论(0) 推荐(0)
摘要: 1.下面两个文件.xls是给的文件,实际上是.xml文件2.具体的代码 1 private void btOK_Click(object sender, EventArgs e) 2 { 3 //0.获取路径文件夹 4 this.btOK.Enabled = false; 5 this.textBox1.Text = System.Windows.Forms.Application.StartupPath + "\\de"; 6 strAllFiles = Directory.Ge... 阅读全文
posted @ 2014-02-28 11:53 银河系上的地球 阅读(1034) 评论(0) 推荐(0)