FileVersionInfo.SpecialBuild Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Dosya için özel derleme bilgilerini alır.
public:
property System::String ^ SpecialBuild { System::String ^ get(); };
public string? SpecialBuild { get; }
public string SpecialBuild { get; }
member this.SpecialBuild : string
Public ReadOnly Property SpecialBuild As String
Özellik Değeri
Dosya için özel derleme bilgileri veya null
dosya sürüm bilgileri içermiyorsa.
Örnekler
Aşağıdaki örnek, Not Defteri için öğesini FileVersionInfo almak için çağrısı GetVersionInfo yapar. Ardından özel derleme bilgilerini bir metin kutusuna yazdırır. Bu kodun textBox1
örneği alındığını varsayar.
private:
void GetSpecialBuild()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print the special build information.
textBox1->Text = String::Concat( "Special build information: ", myFileVersionInfo->SpecialBuild );
}
private void GetSpecialBuild()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the special build information.
textBox1.Text = "Special build information: " + myFileVersionInfo.SpecialBuild;
}
Private Sub GetSpecialBuild()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the special build information.
textBox1.Text = "Special build information: " & myFileVersionInfo.SpecialBuild
End Sub
Açıklamalar
ise IsSpecialBuildtrue
, SpecialBuild bu dosyanın dosyanın standart sürümünden nasıl farklı olduğunu belirtmelidir.