FileVersionInfo.FileMinorPart Property

Definition

Gets the minor part of the version number of the file.

public:
 property int FileMinorPart { int get(); };
public int FileMinorPart { get; }
member this.FileMinorPart : int
Public ReadOnly Property FileMinorPart As Integer

Property Value

A value representing the minor part of the version number of the file or 0 (zero) if the file did not contain version information.

Examples

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 = String::Concat( "File minor part number: ", myFileVersionInfo->FileMinorPart );
    }
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;
}
Private Sub GetFileMinorPart()
    ' Get the file version for the notepad.
    Dim myFileVersionInfo As FileVersionInfo = _
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
    
    ' Print the file minor part number.
    textBox1.Text = "File minor part number: " & myFileVersionInfo.FileMinorPart
End Sub

Remarks

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:

This property gets the second set of 16 bits.

Applies to

See also