FileVersionInfo.PrivateBuild 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 informacje o prywatnej wersji pliku.
public:
property System::String ^ PrivateBuild { System::String ^ get(); };
public string? PrivateBuild { get; }
public string PrivateBuild { get; }
member this.PrivateBuild : string
Public ReadOnly Property PrivateBuild As String
Wartość właściwości
Informacje o prywatnej wersji 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 wyświetla informacje o prywatnej kompilacji w polu tekstowym. W tym kodzie założono, że textBox1
wystąpienie zostało utworzone.
private:
void GetPrivateBuild()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print the private build number.
textBox1->Text = String::Concat( "Private build number: ", myFileVersionInfo->PrivateBuild );
}
private void GetPrivateBuild()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the private build number.
textBox1.Text = "Private build number: " + myFileVersionInfo.PrivateBuild;
}
Private Sub GetPrivateBuild()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the private build number.
textBox1.Text = "Private build number: " & myFileVersionInfo.PrivateBuild
End Sub
Uwagi
Te informacje są obecne, gdy IsPrivateBuild jest to true
.