我收到此错误消息:
未处理的类型异常 ' System.Runtime.InteropServices.COMException'发生在mscorlib.dll
但我的程序正常运行。我的输出是一个matlab图。但我不想要这个错误信息。
我的c#代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
MLApp.MLApp matlab = new MLApp.MLApp();
matlab.Execute(@"cd S:\temp_ausleeren\matlab1_function_csharp");// Funktion die exekutiert werden soll
object result = null;
string var1 = "MatlabExport_SigX_Spectr.txt";
// Call the MATLAB function
matlab.Feval("matlab1_function_csharp", 1, out result, var1);
object[] res = result as object[];
Console.WriteLine(res[0]);
Console.ReadLine();
}
}
}
谢谢