ComponentFactory.Krypton.Ribbon.LicenseInstallForm.GetProductCode C# (CSharp) Method

GetProductCode() protected static method

Gets the product code from the license.
protected static GetProductCode ( string licenseString ) : string
licenseString string License code to decompose.
return string
        protected internal static string GetProductCode(string licenseString)
        {
            string[] parts = licenseString.Split(',');
            if (parts.Length == 2)
                return parts[0];
            else
                return string.Empty;
        }