如何将VB6代码编译成C语言?
- 内容介绍
- 文章标签
- 相关推荐
本文共计110个文字,预计阅读时间需要1分钟。
我创建了一个简单的类,如下所示:
csharpusing System;using System.Text;
namespace Seed{ class Plant { public string Planting() { // ... } }}
我可以从VB6代码调用此函数吗?是的,如果您将DLL暴露为COM组件,就可以从VB6代码调用此函数。
using System; using System.Text; namespace Seed { class Plant { public string Planting () { .... } } }
我可以从VB6代码调用此函数吗?
是的,如果你 expose your DLL as a COM component.本文共计110个文字,预计阅读时间需要1分钟。
我创建了一个简单的类,如下所示:
csharpusing System;using System.Text;
namespace Seed{ class Plant { public string Planting() { // ... } }}
我可以从VB6代码调用此函数吗?是的,如果您将DLL暴露为COM组件,就可以从VB6代码调用此函数。
using System; using System.Text; namespace Seed { class Plant { public string Planting () { .... } } }
我可以从VB6代码调用此函数吗?
是的,如果你 expose your DLL as a COM component.
