class A { /// <summary> /// <see cref="Foo{T}(T)"/> /// </summary> static void Foo<T>(T x) { } }
Try to rename type parameter 'T' at method 'Foo' to 'S'. Result:
class A { /// <summary> /// <see cref="Foo{S}(T)"/> /// </summary> static void Foo<S>(S x) { } }