I have a class that I put in an Addon...
I want to call the VerfiyVendorLicense in the constructor, but I am having no luck..
here is psuedocode to illustrate my non-working attempt
public class WorkerAx1
{
public WorkerAx1(Indicator Indicator)
{
(NinjaScript)Indicator.VerifyVendorLicense("MyVendorLicense", "productname", "website", "email");
...
...
...
}
... functions and such...
}
Thanks in advance.

Comment