FileVersionInfo.ToString 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回 FileVersionInfo 中部分的屬性清單及其值。
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
傳回
這個類別的下列屬性清單及其值:
FileName, InternalName, OriginalFilename, FileVersion, FileDescription, ProductName, ProductVersion, IsDebug, IsPatched, IsPreRelease, IsPrivateBuild, IsSpecialBuild,
如果檔案內不含任何版本資訊,這份清單就只含有所要求檔案的名稱。 布林值將會是 false
,且其他項目將會是 null
。
範例
下列範例會呼叫 GetVersionInfo 以取得 FileVersionInfo 記事本的 。 然後它會呼叫 ToString 以在文本框中列印檔案版本信息的清單。 此程式代碼假設 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