2020
09-25
09-25
Qt程序中调用C#编写的dll(推荐)
1、打开VisualStudio,新建一个C#的ClassLibrary项目(这里选择的是.NetFramework4),项目名为CSharpDll。2、由于默认没有引入Forms等UI库,先在reference中添加引用System.Windows.Forms以便可以在测试中使用MessageBox等。3、最终C#编写的dll的源代码如下图所示,命名空间为CSharpDll,公共类为CSharpClass。usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Form...
继续阅读 >