Class BuildVersionInfo

BuildVersionInfo class

Provides information about the current product name and version.

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 use BuildVersionInfo to display version information about this product.

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

See Also