You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB
C#

namespace com.azkoss.excellite
{
using System;
using System.Globalization;
///<summary>
///Contains static licensing methods (ExcelLite Professional only) and diagnostic
///information about executing ExcelLite assembly.
///</summary>
public sealed class ExcelLite
{
// Methods
static ExcelLite()
{
com.azkoss.excellite.ExcelLite.LicenseReleaseID = 2 + int.Parse("23", CultureInfo.InvariantCulture);
}
private ExcelLite()
{
}
// Fields
///<summary>
///ExcelLite assembly full version.
///</summary>
public const string FullVersion = "23.1.5000.1000";
internal static int LicenseReleaseID;
private const string Name = "com.azkoss.excellite Free 2.3";
private const string RevisionStr = "1000";
///<summary>
///ExcelLite assembly title.
///</summary>
public const string Title = "com.azkoss.excellite Free 2.3 for .NET 1.1";
private const string TypeStr = "1";
private const string VersionLong = "2.3";
private const string VersionShort = "23";
}
}