Nevron Forum

How to add 2 licenses?

https://www.nevron.com/Forum/Topic3234.aspx

By JSW W. - Wednesday, March 10, 2010

Nevron.NLicenseManager.Instance.SetLicense(nevronLicense)

How do i added license for chart and ui on one application?
By Blagovest Milanov 1 - Thursday, March 11, 2010

Hi,

You can use one of the initializer constructors of NLicense that accepts an array of keys:

List<NLicenseKey> keys = new List<NLicenseKey>();
keys.Add(new NLicenseKey("licenseKey1"));
keys.Add(new NLicenseKey("licenseKey2"));
NLicense license = new NLicense(keys);
NLicenseManager.Instance.SetLicense(license);
NLicenseManager.Instance.LockLicense = true;

Let me know if you meet any problems.

Best regards,
Bob

By JSW W. - Friday, March 19, 2010

I implemented these, no problem so far.
Thanks,