usingSystem.Security.Cryptography;privatevoidbtnOK_Click(objectsender,System.EventArgse) { stringstrConn=amp;quot;server=192.168.0.51;database=chengheng;Userid=sa;password=123amp;quot;; i ...……
添加OutLook API
1 using OutLook = Microsoft.Office.Interop.Outlook;
发送邮件方法
1 public void SendEmail()
2 {
3 OutLook.Application app = new OutLook.Application();
4 OutLook.NameSpace ...……
一)委托的概念及定义 A delegate declaration defines a reference type that can be used to encapsulate a method with a specific signature. A delegate instance encapsulates a ...……
转自:http://blog.chinaunix.net/uid-215617-id-2213082.html
Some of the C# code I've been writing recently communicates via TCP/IP with legacy C++ applications. These applications use a raw packet form ...……