How to reference generic classes and methods in xml documentation

0 votes

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.

Jun 11, 2022 in C# by pranav
• 2,590 points

edited Mar 4 21 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP