先上代码 后续更新 public class IncidentType { public static void main(String[] args) { int a = 3; int b = ++( (++a)-- ); System.out.println(a); System.out.println(b); } }…
添加OutLook API using OutLook = Microsoft.Office.Interop.Outlook; 发送邮件方法 public void SendEmail() { OutLook.Application app = new OutLook.Application(); OutLook.NameSpace ns = app.GetNamespace("mapi"); ns.Logon("ServerName\\UserName", &qu…