I have a method with the following signature:
public static float CalculateDistanceBetweenClans(Clan clan1, Clan clan2, List<(ulong owners, float distance, float weight)> settlementOwnersPairedList)
{
...
}
And I want to reference it from some other method's description:
/// <remarks>
/// This method could be used to supply
/// <see cref="DistanceMatrix{T}.CalculateDistanceBetweenClans(Clan, Clan, List{(ulong owners, float distance, float weight)})"/>
/// method with required list argument.
/// </remarks>
public static List<(ulong owners, float distance, float weight)> GetSettlementOwnersPairedList(DistanceMatrix<Settlement> settlementDistanceMatrix)
{
...
}
While this code is handled by the compiler without any exceptions, IntelliCode does not display the result as a method reference. It is shown as a plain text.