c# 调用 Matlab 生成的.dll 总是运行出问题
我用的是一个很简单的例子Matlab的函数代码是这个:
function c=mysum(a,b)
c=a+b;
end
C#的代码是这个:
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using MathWorks.
using MathWorks.
using Untitled1;//此句为调用自己生成的DLL
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MWArray a = 4; MWArray b = 5;
Untitled1.Class1 c = new Untitled1.Class1();
MWArray d = c.mysum(a, b);
textBox1.Text = d.ToString();
}
}
}
按理来说应该没有问题才对,但运行出现“vshost.exe已停止工作”这个问题,困扰我许多天了,望大神帮帮我