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

GetVersionCode() protected static method

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