The XML documentation of IdentifierSymbol.AddAlias includes <see href="/dotnet/standard/commandline/syntax#aliases">alias</see>. The Intellisense tooltip in Visual Studio 2017 displays the /dotnet/standard/commandline/syntax#aliases string as is, not as a clickable hyperlink, so it is not useful there.
|
/// <summary> |
|
/// Adds an <see href="/dotnet/standard/commandline/syntax#aliases">alias</see>. |
|
/// </summary> |
|
/// <param name="alias">The alias to add.</param> |
|
/// <remarks> |
|
/// You can add multiple aliases for a symbol. |
|
/// </remarks> |
|
public void AddAlias(string alias) |
The XML documentation of IdentifierSymbol.AddAlias includes
<see href="/dotnet/standard/commandline/syntax#aliases">alias</see>. The Intellisense tooltip in Visual Studio 2017 displays the/dotnet/standard/commandline/syntax#aliasesstring as is, not as a clickable hyperlink, so it is not useful there.command-line-api/src/System.CommandLine/IdentifierSymbol.cs
Lines 62 to 69 in 209b724