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?
Yes, if you expose your DLL as a component of COM .
this article should help you with this