共用方式為


FileVersionInfo.IsSpecialBuild 屬性

定義

取得數值,指定檔案是否為特殊的組建。

public:
 property bool IsSpecialBuild { bool get(); };
public bool IsSpecialBuild { get; }
member this.IsSpecialBuild : bool
Public ReadOnly Property IsSpecialBuild As Boolean

屬性值

如果檔案是特殊的組建則為 true,否則為 false

範例

下列範例會呼叫 GetVersionInfo 以取得 FileVersionInfo [記事本] 的 。 然後會顯示此版本是否為文字框中的特殊組建版本。 此程式代碼假設 textBox1 已具現化。

private:
    void GetIsSpecialBuild()
    {
        // Get the file version for the notepad.
        FileVersionInfo^ myFileVersionInfo =
            FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );

        // Print whether the file is a special build.
        textBox1->Text = String::Concat( "File is a special build: ", myFileVersionInfo->IsSpecialBuild );
    }
private void GetIsSpecialBuild()
{
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo =
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");

    // Print whether the file is a special build.
    textBox1.Text = "File is a special build: " + myFileVersionInfo.IsSpecialBuild;
}
Private Sub GetIsSpecialBuild()
    ' Get the file version for the notepad.
    Dim myFileVersionInfo As FileVersionInfo = _
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
    
    ' Print whether the file is a special build.
    textBox1.Text = "File is a special build: " & myFileVersionInfo.IsSpecialBuild
End Sub

備註

特殊組建的檔案是使用標準發行程式所建置,但檔案與相同版本號碼的標準檔案不同。 如果此值為 true,屬性 SpecialBuild 必須指定此檔案與標準版本有何不同。

適用於

另請參閱