admin管理员组

文章数量:1122826

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):

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):

Share Improve this question edited 2 days ago milos asked Dec 31, 2024 at 22:30 milosmilos 1033 silver badges10 bronze badges 2
  • If possible, please include code/html as formatted code with backticks ```html and not images. – Daraan Commented Jan 3 at 11:40
  • @Daraan I wrote in a post to explain what image means. There is no code or html to include because the question is about code documentation visuals – milos Commented Jan 4 at 20:55
Add a comment  | 

1 Answer 1

Reset to default 1

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

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

本文标签: visual studioC documentation link to method but show only method name without parametersStack Overflow