2017年7月13日

摘要: protected delegate void UpdateControlText(string strText); //定义一个委托 //定义更新控件的方法 protected void updateControlText(string strText) { this.label1.Text = 阅读全文
posted @ 2017-07-13 15:19 bobob 阅读(144) 评论(0) 推荐(0) 编辑
摘要: using System; using System.IO; using System.Runtime.InteropServices; using System.Text; namespace helper { /// <summary> /// ini文件读与写 /// </summary> p 阅读全文
posted @ 2017-07-13 15:08 bobob 阅读(155) 评论(0) 推荐(0) 编辑
摘要: List集合在开发程序的时候,我一般会频繁的用到,感觉几乎可以代替数组来完成大量的工作。并且他也有很多实用的功能,让代码更加简洁高效。首先举例2个集合A,B. List<int> listA = new List<int> {1,2,3};List<int> listB = new List<int 阅读全文
posted @ 2017-07-13 01:44 bobob 阅读(1015) 评论(0) 推荐(0) 编辑

导航