CommandLineArgumentAliases Property  | 
 
            Gets the alternative names for this command line argument.
            
 
    Namespace: 
   Ookii.CommandLine
    Assembly:
   Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic IList<string> Aliases { get; }Public ReadOnly Property Aliases As IList(Of String)
	Get
Dim instance As CommandLineArgument
Dim value As IList(Of String)
value = instance.Aliases
public:
property IList<String^>^ Aliases {
	IList<String^>^ get ();
}Property Value
Type: 
IListString
            A list of alternative names for this command line argument, or 
 if none were specified.
            
See Also