Aracılığıyla paylaş


FileVersionInfo.IsSpecialBuild Özellik

Tanım

Dosyanın özel bir derleme olup olmadığını belirten bir değer alır.

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

Özellik Değeri

true dosya özel bir derlemeyse; aksi takdirde , false.

Örnekler

Aşağıdaki örnek, Not Defteri için öğesini FileVersionInfo almak için çağrısı GetVersionInfo yapar. Ardından, bu sürümün bir metin kutusunda özel bir derleme sürümü olup olmadığını görüntüler. Bu kod örneği başlatıldığını varsayar 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

Açıklamalar

Özel bir derleme olan bir dosya, standart sürüm yordamları kullanılarak oluşturulmuş, ancak dosya aynı sürüm numarasına sahip standart bir dosyadan farklıdır. Bu değer ise trueözelliği, SpecialBuild bu dosyanın standart sürümden nasıl farklı olduğunu belirtmelidir.

Şunlara uygulanır

Ayrıca bkz.