【发布时间】:2009-12-10 21:37:03
【问题描述】:
我有这个函数用来计算一些数据的线性趋势:
private string Trend(object conocido_y, object conocido_x, object nueva_matriz_x)
{
string result = String.Empty;
try {
Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();
result = ((Array)xlApp.WorksheetFunction.Trend(conocido_y, conocido_x, nueva_matriz_x, true)).GetValue(1).ToString();
xlApp.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(xlApp);
xlApp = null;
}
catch (System.Runtime.InteropServices.COMException ex) {
DError.ReportarError(ex, false);
}
catch (Exception ex) {
DError.ReportarError(ex);
}
return result;
}
结果很好但是excel应用程序没有关闭,如果我打开任务管理器进程仍在运行,为什么?
【问题讨论】:
-
但是“正确答案”不是被接受的,因为它对提问者不起作用。它甚至没有一票(我现在要投赞成票)。