FileVersionInfo::CompanyName Property

 

Gets the name of the company that produced the file.

Namespace:   System.Diagnostics
Assembly:  System (in System.dll)

public:
property String^ CompanyName {
	String^ get();
}

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
Return to top
Show: