Get Product Name and DLL Version
Contents
[
Hide
]
The system information about the Aspose.BarCode library can be obtained using structure BuildVersionInfo that provides the following data:
- Assembly version
- File version
- Product title
- Major product version
- Minor product version
- Product release date
The following code sample illustrates how to implement this feature.
//the code shows the system information about Aspose.BarCode dll
Console.WriteLine("Assembly version: " + BuildVersionInfo.AssemblyVersion);
Console.WriteLine("File Version: " + BuildVersionInfo.FileVersion);
Console.WriteLine("Product: " + BuildVersionInfo.Product);
Console.WriteLine("Product Major: " + BuildVersionInfo.ProductMajor);
Console.WriteLine("Product Minor: " + BuildVersionInfo.ProductMinor);
Console.WriteLine("Release Date: " + BuildVersionInfo.ReleaseDate);