Application.ProductName Property

Definition

Gets the product name associated with this application.

public:
 static property System::String ^ ProductName { System::String ^ get(); };
public static string ProductName { get; }
public static string? ProductName { get; }
static member ProductName : string
Public Shared ReadOnly Property ProductName As String

Property Value

The product name.

Examples

The following code example gets this property and displays its value in a text box. The example requires that textBox1 has been placed on a form.

private:
   void PrintProductName()
   {
      textBox1->Text = "The product name is: {0}",
         Application::ProductName;
   }
private void PrintProductName() {
    textBox1.Text = "The product name is: " +
       Application.ProductName;
 }
Private Sub PrintProductName()
   textBox1.Text = "The product name is: " & _
      Application.ProductName
End Sub

Remarks

ProductName is taken from the metadata of the assembly containing the main form of the current application. You can set it by setting AssemblyProductAttribute inside of your assembly manifest. For more information, see Assembly Manifest.

Applies to

See also