Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

FileVersionInfo.CompanyName Property

Definition

Namespace:
System.Diagnostics
Assemblies:
netstandard.dll, System.Diagnostics.FileVersionInfo.dll
Assembly:
System.Diagnostics.FileVersionInfo.dll
Assembly:
System.dll
Assembly:
netstandard.dll
Source:
FileVersionInfo.cs
Source:
FileVersionInfo.cs
Source:
FileVersionInfo.cs
Source:
FileVersionInfo.cs
Source:
FileVersionInfo.cs

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.

Gets the name of the company that produced the file.

public:
 property System::String ^ CompanyName { System::String ^ get(); };
public string? CompanyName { get; }
public string CompanyName { get; }
member this.CompanyName : string
Public ReadOnly Property CompanyName As String

Property Value

The name of the company that produced the file or null if the file did not contain version information.

Examples

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;
}
Private Sub GetCompanyName()
 ' Get the file version for the notepad.
 Dim myFileVersionInfo As FileVersionInfo = _
 FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")

 ' Print the company name.
 textBox1.Text = "The company name: " & myFileVersionInfo.CompanyName
End Sub

Applies to


Feedback

Was this page helpful?