摘要:
有时候为了需要,我们需要获得cpu的序列号对相关的东西做验证,就需要获得cpu的序列号了 代码共享下publicstringGetHardDiskID(){stringcpuInfo="";ManagementClasscimobject=newManagementClass("Win32_Processor");ManagementObjectCollectionmoc=cimobject.GetInstances();foreach(ManagementObjectmoinmoc){cpuInfo=mo.Properties["Proces 阅读全文
该文被密码保护。 阅读全文
摘要:
http://www.cnblogs.com/peterzb/archive/2009/05/30/1491923.html 下面介绍三种对comboBox绑定的方式,分别是泛型中IList和Dictionary,还有数据集DataTable一、IList现在我们直接创建一个List集合,然后绑定View Code IList<string>list=newList<string>();list.Add("111111");list.Add("222222");list.Add("333333");list.A 阅读全文