我尝试将每个电子邮件的查询结果导出为附加
此处代码:
System.Diagnostics.ProcessStartInfo proc = new System.Diagnostics.ProcessStartInfo();
proc.FileName = @"c:\windows\system32\cmd.exe";
proc.Arguments = @" /c p4 edit";
proc.RedirectStandardError = true;
proc.RedirectStandardOutput = true;
proc.UseShellExecute = false;
using (System.Diagnostics.Process process = System.Diagnostics.Process.Start(proc))
{
using (StreamReader reader = process.StandardError)
{
string result = reader.ReadToEnd();
_threadError = result;
}
}
它正常工作,但我有两个问题:
第二行是空的:如何删除它(在查询中)?
在查询中我使用:SET NOCOUNT ON, 但是在xls文件中我可以看到计数(见截图), 如何删除它(在查询中)?
提前致谢