一)委托的概念及定义 A delegate declaration defines a reference type that can be used to encapsulate a method with a specific signature. A delegate instance encapsulates a ...……
添加OutLook API
1 using OutLook = Microsoft.Office.Interop.Outlook;
发送邮件方法
1 public void SendEmail()
2 {
3 OutLook.Application app = new OutLook.Application();
4 OutLook.NameSpace ...……