protected virtual void WriteAliases(
	IEnumerable<string>? aliases,
	IEnumerable<char>? shortAliases,
	string prefix,
	string shortPrefix
)Protected Overridable Sub WriteAliases ( 
	aliases As IEnumerable(Of String),
	shortAliases As IEnumerable(Of Char),
	prefix As String,
	shortPrefix As String
)
Dim aliases As IEnumerable(Of String)
Dim shortAliases As IEnumerable(Of Char)
Dim prefix As String
Dim shortPrefix As String
Me.WriteAliases(aliases, shortAliases, 
	prefix, shortPrefix)protected:
virtual void WriteAliases(
	IEnumerable<String^>^ aliases, 
	IEnumerable<wchar_t>^ shortAliases, 
	String^ prefix, 
	String^ shortPrefix
)The base implementation writes a list of the short aliases, followed by the long aliases, surrounded by parentheses, and preceded by a single space. For example, " (-Alias1, -Alias2)" or " (-a, -b, --alias1, --alias2)".
If there are no aliases at all, it writes nothing.
This method is called by the base implementation of the WriteArgumentDescription(CommandLineArgument) method if the IncludeAliasInDescription property is .