FileVersionInfo.ProductBuildPart 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 numer kompilacji produktu, z tym plikiem jest skojarzony.
public:
property int ProductBuildPart { int get(); };
public int ProductBuildPart { get; }
member this.ProductBuildPart : int
Public ReadOnly Property ProductBuildPart As Integer
Wartość właściwości
Wartość reprezentująca numer kompilacji produktu, z którym jest skojarzony ten plik lub null
jeśli plik nie zawiera informacji o wersji.
Przykłady
Poniższe przykładowe wywołania GetVersionInfo w celu pobrania FileVersionInfo elementu dla Notatnika. Następnie drukuje element ProductBuildPart w polu tekstowym. W tym kodzie przyjęto założenie textBox1
, że zostało utworzone wystąpienie.
private:
void GetProductBuildPart()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print the product build part number.
textBox1->Text = String::Concat( "Product build part number: ", myFileVersionInfo->ProductBuildPart );
}
private void GetProductBuildPart()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the product build part number.
textBox1.Text = "Product build part number: " + myFileVersionInfo.ProductBuildPart;
}
Private Sub GetProductBuildPart()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the product build part number.
textBox1.Text = "Product build part number: " & myFileVersionInfo.ProductBuildPart
End Sub
Uwagi
Zazwyczaj numer wersji jest wyświetlany jako "numer główny.numer pomocniczy.numer kompilacji.prywatny numer części". Numer wersji produktu to 64-bitowy numer, który zawiera numer wersji w następujący sposób:
Pierwsze 16 bitów to ProductMajorPart liczba.
Kolejne 16 bitów to ProductMinorPart liczba.
Trzeci zestaw 16 bitów to ProductBuildPart liczba.
Ostatnie 16 bitów to ProductPrivatePart liczba.
Ta właściwość pobiera trzeci zestaw 16 bitów.