Search code examples
c#visual-studioxml-documentation

C# documentation link to method but show only method name without parameters


I want to show link with only method name as text. Is there a way to set link to method and change text? This is all I know: <see cref="ScrapePatentsByWindows"/> and when you hover over method Visual Studio documentation pop-up looks like this:

enter image description here

How can I remove class name and method parameters so it only says ScrapePatentsByWindows, like this (this image is photoshoped and it is what I want to achieve): enter image description here


Solution

  • Simply use the full <see> syntax, not the shortened form:

    <see cref="ScrapePatentsByWindows">only the method name or any text</see>