FileVersionInfo::CompanyName Property
.NET Framework (current version)
Gets the name of the company that produced the file.
Assembly: System (in System.dll)
Property Value
Type: System::String^The name of the company that produced the file or null if the file did not contain version information.
The following example calls GetVersionInfo to get the FileVersionInfo for the Notepad. Then it prints the CompanyName in a text box. This code assumes textBox1 has been instantiated.
private: void GetCompanyName() { // Get the file version for the notepad. FileVersionInfo^ myFileVersionInfo = FileVersionInfo::GetVersionInfo(Environment::SystemDirectory + "\\Notepad.exe"); // Print the company name. textBox1->Text = "The company name: " + myFileVersionInfo->CompanyName; }
.NET Framework
Available since 1.1
Available since 1.1
Show: