FileVersionInfo.FileMinorPart Property
Gets the minor part of the version number of the file.
Assembly: System (in System.dll)
Property Value
Type: System.Int32A value representing the minor part of the version number of the file or 0 (zero) if the file did not contain version information.
Typically, a version number is displayed as "major number.minor number.build number.private part number". A file version number is a 64-bit number that holds the version number for a file as follows:
The first 16 bits are the FileMajorPart number.
The next 16 bits are the FileMinorPart number.
The third set of 16 bits are the FileBuildPart number.
The last 16 bits are the FilePrivatePart number.
This property gets the second set of 16 bits.
The following example calls GetVersionInfo to get the FileVersionInfo for the Notepad. Then it prints the FileMinorPart in a text box. This code assumes textBox1 has been instantiated.
private void GetFileMinorPart() { // Get the file version for the notepad. FileVersionInfo myFileVersionInfo = FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe"); // Print the file minor part number. textBox1.Text = "File minor part number: " + myFileVersionInfo.FileMinorPart; }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.