摘要:
Uri 类TcpClient 类TcpServer 类/////////////////////////////////////////////////////////////////////////////Socket操作//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////using System.Net;using System.Net.Sockets;private 阅读全文
摘要:
一、委托callback 回调函数声明委托:(与声明类相似)public delegate string MyDelegate(string sInput);使用委托:1.MyDelegate myDelegateCase = new MyDelegate(InvokeMethod);private string InvokeMethod(string sInput){ return sInput);}2. 委托推断MyDelegate myDelegateCase = InvokeMethod;3. 匿名方法MyDelegate myDelegateCase = delegate(strin 阅读全文
摘要:
1.读取指定名称的注册表的值private string GetRegistData(string name){ string registData; RegistryKey hkml = Registry.LocalMachine; RegistryKey software = hkml.OpenSubKey("SOFTWARE",true); RegistryKey aimdir = software.OpenSubKey("XXX",true); registData = aimdir.GetValue(name).ToString(); retu 阅读全文