BuildVersionInfo

BuildVersionInfo class

Provides information about the current product name and version.

To learn more, visit the Generator or Producer Name Included in Output Documents documentation article.

public static class BuildVersionInfo

Properties

NameDescription
static Product { get; }Gets the full name of the product.
static Version { get; }Gets the product version.

Examples

Shows how to display information about your installed version of Aspose.Words.

Console.WriteLine($"I am currently using {BuildVersionInfo.Product}, version number {BuildVersionInfo.Version}!");

See Also