开发者

Compile C#.net dll for VB6

开发者 https://www.devze.com 2023-03-26 05:58 出处:网络
开发者_运维百科I create a simple class like the one below: using System; using System.Text; namespace Seed
开发者_运维百科

I create a simple class like the one below:

using System;
using System.Text;

namespace Seed
{
    class Plant
    {
       public string Planting () 
       {
        ....
       }
    }
 }

Can I call this function from VB6 code?


Yes, if you expose your DLL as a COM component.

0

精彩评论

暂无评论...
验证码 换一张
取 消