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