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:
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):
Simply use the full <see>
syntax, not the shortened form:
<see cref="ScrapePatentsByWindows">only the method name or any text</see>