public string ApplicationFriendlyName { get; }
Public ReadOnly Property ApplicationFriendlyName As String
Get
Dim instance As CommandLineParser
Dim value As String
value = instance.ApplicationFriendlyName
public:
property String^ ApplicationFriendlyName {
String^ get ();
}
The friendly name is determined by checking for the ApplicationFriendlyNameAttribute attribute first on the arguments type, then on the arguments type's assembly. If neither exists, the AssemblyTitleAttribute is used. If that is not present either, the assembly's name is used.
This name is only used in the output of the automatically created "-Version" attribute.