Aracılığıyla paylaş


FileVersionInfo.ToString Yöntem

Tanım

ve değerlerindeki FileVersionInfo özelliklerin kısmi bir listesini döndürür.

public:
 override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

Döndürülenler

Bu sınıftaki aşağıdaki özelliklerin ve değerlerinin listesi:

FileName, InternalName, OriginalFilename, FileVersion, FileDescription, ProductName, ProductVersion, IsDebug, IsPatched, IsPreRelease, IsPrivateBuild, IsSpecialBuild,

Language.

Dosya sürüm bilgilerini içermiyorsa, bu liste yalnızca istenen dosyanın adını içerir. Boole değerleri olur falseve diğer tüm girişler olur null.

Örnekler

Aşağıdaki örnek, Not Defteri için öğesini FileVersionInfo almak için çağrısı GetVersionInfo yapar. Ardından, dosya sürümü bilgilerinin listesini bir metin kutusuna yazdırmayı çağırır ToString . Bu kod örneği başlatıldığını varsayar textBox1 .

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

        // Print all the version information.
        textBox1->Text = myFileVersionInfo->ToString();
    }
private void GetFileVersion2()
{
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo =
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");

    // Print all the version information.
    textBox1.Text = myFileVersionInfo.ToString();
}
Private Sub GetFileVersion2()
    ' Get the file version for the notepad.
    Dim myFileVersionInfo As FileVersionInfo = _
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
    
    ' Print all the version information.
    textBox1.Text = myFileVersionInfo.ToString()
End Sub

Şunlara uygulanır

Ayrıca bkz.