FileVersionInfo.IsPrivateBuild 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得數值,指定是否使用標準發行程序建置檔案。
public:
property bool IsPrivateBuild { bool get(); };
public bool IsPrivateBuild { get; }
member this.IsPrivateBuild : bool
Public ReadOnly Property IsPrivateBuild As Boolean
屬性值
如果檔案是私用組建,則為 true
;如果檔案是使用標準發行程序所建置,或是檔案未包含版本資訊,則為 false
。
範例
下列範例會呼叫 GetVersionInfo 以取得 FileVersionInfo [記事本] 的 。 然後它會在文字框中顯示私人組建資訊。 此程式代碼假設 textBox1
已具現化。
private:
void GetIsPrivateBuild()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print whether the version is a private build.
textBox1->Text = String::Concat( "Version is a private build: ", myFileVersionInfo->IsPrivateBuild );
}
private void GetIsPrivateBuild()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print whether the version is a private build.
textBox1.Text = "Version is a private build: " + myFileVersionInfo.IsPrivateBuild;
}
Private Sub GetIsPrivateBuild()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print whether the version is a private build.
textBox1.Text = "Version is a private build: " & myFileVersionInfo.IsPrivateBuild
End Sub
備註
如果此值為 true
, PrivateBuild 將會描述此版本的檔案與標準版本有何不同。