I can't see methods of my .NET DLL

red_antred_ant Member Posts: 2
Hi, I have a problem with a C# DLL that I've developed for Navision 3.70. I can't see the public methods in the automation variable referenced to my DLL.

This is the structure of my sourcecode:
using (...)
namespace EXAMPLE
{
    [ComVisible(true)]
    public class MYCLASS
    {
        public MYCLASS()
        {
            //NO CODE
        }

        [ComVisible(true)]
        public void MyFunction(string MyParameter)
        {
            MyCode;
        }
    }
}

To register this DLL in the system, I've created a Setup Project.

[-o< Anyone can reply me? Please, I don't understand what I'm doing bad...

PD: Sorry for my poor english...
ReD_aNT::working hard to improve

Comments

Sign In or Register to comment.