Currently, crefs are resolved only when they're specified using short names.
E.g.
/// <inheritdoc cref="A(List{int},byte)" />
public static void A(List<int> x, int y) => ...;
public static void A(List<int> x, byte y) => ...;
We should also resolve crefs like this:
/// <inheritdoc cref="A(System.Collections.Generic.List{int},byte)" />
public static void A(List<int> x, int y) => ...;
public static void A(List<int> x, byte y) => ...;
Currently, crefs are resolved only when they're specified using short names.
E.g.
We should also resolve crefs like this: