You can use <see cref="something">something</see> while developing xml documentation, which works fine. But how can you use generic types to refer to a class or a method?
public class FancyClass<T>
{
public string FancyMethod<K>(T value) { return "something fancy"; }
}
How would I refer to the fancy class if I were to create xml documentation somewhere? What is the best way to refer to a FancyClass<string>? What about the procedure?
For example, in another class, I wanted to inform the user that I will return a FancyClass<int> instance. I'm not sure how I'd go about making a see cref item for that.