FileVersionInfo.FilePrivatePart Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera prywatny numer części pliku.
public:
property int FilePrivatePart { int get(); };
public int FilePrivatePart { get; }
member this.FilePrivatePart : int
Public ReadOnly Property FilePrivatePart As Integer
Wartość właściwości
Wartość reprezentująca numer części prywatnej pliku lub null
jeśli plik nie zawiera informacji o wersji.
Przykłady
Poniższe przykładowe wywołania GetVersionInfo w celu pobrania FileVersionInfo notatnika. Następnie drukuje element FilePrivatePart w polu tekstowym. W tym kodzie założono, że textBox1
wystąpienie zostało utworzone.
private:
void GetFilePrivatePart()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print the file private part number.
textBox1->Text = String::Concat( "File private part number: ", myFileVersionInfo->FilePrivatePart );
}
private void GetFilePrivatePart()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the file private part number.
textBox1.Text = "File private part number: " + myFileVersionInfo.FilePrivatePart;
}
Private Sub GetFilePrivatePart()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the file private part number.
textBox1.Text = "File private part number: " & myFileVersionInfo.FilePrivatePart
End Sub
Uwagi
Zazwyczaj numer wersji jest wyświetlany jako "numer główny.numer pomocniczy.numer kompilacji.numer prywatny". Numer wersji pliku to numer 64-bitowy zawierający numer wersji pliku w następujący sposób:
Pierwsze 16 bitów to FileMajorPart liczba.
Kolejne 16 bitów to FileMinorPart liczba.
Trzeci zestaw 16 bitów to FileBuildPart liczba.
Liczba ostatnich 16 bitów FilePrivatePart .
Ta właściwość pobiera ostatni zestaw 16 bitów.