Compile C # .net dll for VB6

I am creating a simple class as shown below:

using System; using System.Text; namespace Seed { class Plant { public string Planting () { .... } } } 

Is it possible to call this function from VB6 code?

+4
source share

All Articles