Namespace test1 Public Class Cls1 Public Function plus(ByVal a As Double, ByVal b As Double) As Double plus = a + b * 2 End Function End Class End Namespace
之后发布,发布之前记得在项目属性中确认一下根命名空间,如下图,发布后形成dll文件。
之后,新建C#的项目,windows应用程序,添加引用,如下图所示,然后写代码。
代码如下:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using vbTestDll.test1;
namespace cccc_use_vb_dll { public partial class Form1 : Form { public Form1() { InitializeComponent(); }