Skip to main content
3 votes
5 answers
187 views

I wrote some server providing XML output with some debugging comments, like this (just a short extract): <Result> <Channel>DB1.PagesFreeMinPct</Channel> <Value>55.578&...
U. Windl's user avatar
  • 4,746
12 votes
0 answers
919 views

I can declare a C# positional record like this: public record Box(double Capacity); which results in the definition of a record class named Box with a property named Capacity, as well as a primary ...
spdtech's user avatar
  • 121
0 votes
2 answers
234 views

I would like to get method comments that are in a manager class that is directly called by a controller to show up in Swagger UI. The only way I know of to do that is to copy and paste the comments ...
Nelson Nyland's user avatar
0 votes
1 answer
67 views

I have some base class and multiple classes inheriting from it. Those derived classes usually won't override the default constructor. Nevertheless, I'd like to change the documentation of that default ...
Timur Kelman's user avatar
5 votes
1 answer
976 views

In C# it is possible to add doc comments to methods. In the description it's possible to put a reference to another type using the <see cref="..."/> tag. When putting a generic type in ...
Martin Brown's user avatar
  • 25.5k
2 votes
3 answers
2k views

I know that similar questions have been asked here but I'm truly at a loss. I currently have around 5ish .csproj files as a part of a web application that all contain XML comments. Proj1 is the only ...
Kaila Williams's user avatar
1 vote
1 answer
92 views

I know that i need to add ///<summary> to have mouse over tips on functions and variables but is there a way to make this happen only with the // ? In the pre-built default functions i always ...
Steven's user avatar
  • 69
6 votes
1 answer
1k views

I have created my own nuget package: https://www.nuget.org/packages/Chia-Client-API/ In the code of the package, I documented all functions with xaml comments: /// <summary> /// returns all ...
julian bechtold's user avatar
1 vote
1 answer
348 views

Example: When i rename the following function public void Foo(){} to public void Bar(){} Then visual studio changes all constant strings, that contain the word "Foo" and replaces "Foo&...
Canabale's user avatar
  • 444
1 vote
1 answer
444 views

Given the following code: class FixedWidthReader<T> { public T? Item { get; private set; } /// <summary> /// Populates <see cref="Item"/>. /// </summary&...
Jonathan Wood's user avatar
0 votes
2 answers
156 views

XML i am parsing: <List> <Item> <Price> <Amount>100</Amount> <Next_Item> <Name>Apple</Name> ...
Anonymous's user avatar
0 votes
0 answers
160 views

In C# XML comments, we have the <exception> tag to say that a method throws a particular type of exception. What is the best way to tell the library users that a method does not throw any (...
Sergey Slepov's user avatar
0 votes
0 answers
655 views

I am editing xml files, I ran into the problem that when changing a file in a python script, its structure is lost. Xml file: <?xml version="1.0" encoding="UTF-8"?> <main&...
Fedor March's user avatar
7 votes
2 answers
5k views

As pictured, the "param" part of the summary is not showing on mouse over panel. Should I expect them to be there or is the "param" functionality not working as I think it should? ...
pks's user avatar
  • 165
0 votes
1 answer
472 views

I have an interface with XML comments on namespace NamespaceName.Core.Services { public interface ITransaction : IDisposable { /// <summary> /// Sends message into the ...
imsan's user avatar
  • 469

15 30 50 per page
1
2 3 4 5
21