FileVersionInfo.PrivateBuild プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ファイルのプライベート バージョンについての情報を取得します。
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
プロパティ値
ファイルのプライベート バージョンについての情報。ファイルにバージョン情報が含まれていない場合は null
。
例
次の例では、 を呼び出 GetVersionInfo してメモ帳の を FileVersionInfo 取得します。 次に、プライベート ビルド情報をテキスト ボックスに出力します。 このコードは、 textBox1
がインスタンス化されていることを前提としています。
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
注釈
この情報は、 が の場合にIsPrivateBuildtrue
存在します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET