FileVersionInfo.ToString Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a partial list of properties in the FileVersionInfo and their values.
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
Returns
A list of the following properties in this class and their values:
FileName, InternalName, OriginalFilename, FileVersion, FileDescription, ProductName, ProductVersion, IsDebug, IsPatched, IsPreRelease, IsPrivateBuild, IsSpecialBuild,
If the file did not contain version information, this list will contain only the name of the requested file. Boolean values will be false
, and all other entries will be null
.
Examples
The following example calls GetVersionInfo to get the FileVersionInfo for the Notepad. Then it calls ToString to print a list of the file version information in a text box. This code assumes textBox1
has been instantiated.
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