共用方式為


FileVersionInfo.FileMinorPart 屬性

定義

取得檔案版本號碼的次要部分。

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

屬性值

代表檔案版本號碼次要部分的值,如果檔案未包含版本資訊,則為 0 (零)。

範例

下列範例會呼叫 GetVersionInfo 以取得 FileVersionInfo [記事本] 的 。 然後它會在文字框中列印 FileMinorPart 。 此程式代碼假設 textBox1 已具現化。

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

備註

一般而言,版本號碼會顯示為「major number.minor number.build number.private part number」。 檔案版本號碼是保留檔案版本號碼的64位號碼,如下所示:

這個屬性會取得第二組 16 位。

適用於

另請參閱