Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

52
votes
10answers
21k views

Generating Documentation from C# XML Comments

I've recently started a new project and I'm using C# for the first time. I've found that while Visual Studio is helpful in creating C#'s XML comments to document your classes and methods, there's not ...
14
votes
7answers
5k views

How to have comments in IntelliSense for function in Visual Studio?

In Visual Studio and C#, when using a built in function such as ToString(), IntelliSense shows a yellow box explaining what it does. How can I have that for functions and properties I write?
10
votes
3answers
1k views

Change default XML comment snippet in Visual Studio

When I hit /// in Visual Studio, is it possible to change the resulting snippet from this: /// <summary> /// /// </summary> to this?: /// <summary></summary>
10
votes
2answers
740 views

What does the filterpriority tag in an XML comment do?

I have seen this in a lot of XML comments for classes in the .NET Framework BCL but have never been able to find documentation that explains what it does. As an example, looking at System.Object ...
9
votes
6answers
1k views

XML Commenting tips for C# programming

Good morning, afternoon, evening or night (depending on your timezone). This is just a general question about XML commenting within C#. I have never been very big into commenting my programs, I've ...
8
votes
3answers
2k views

XML multiline comments in C# - what am I doing wrong?

According to this article, it's possible to get multiline XML comments -- instead of using ///, use /** */. This is my interpretation of what multiline comments are, and what I want to have happen: ...
8
votes
2answers
518 views

Can ConfigurationManager retain XML comments on Save()?

I've written a small utility that allows me to change a simple AppSetting for another application's App.config file, and then save the changes: //save a backup copy first. var cfg = ...
8
votes
9answers
387 views

Code Commenting: Do you put your code comments on Interfaces or on Concrete classes, or both?

What is the best practice in documenting classes and interfaces. Say if you have a concrete class called Foo, that derives from an interface called IFoo. Where do you put your comments for your ...
7
votes
6answers
447 views

What are the virtues of using XML comments in .NET?

I can't understand the virtues of using XML comments. I know they can be converted into nice documentation external to the code, but the same can be achieved with the much more concise DOxygen syntax. ...
7
votes
5answers
5k views

How do I customize the auto commenting text in Visual Studio?

When I type the trigger the auto comment feature in Visual Studio (by typing "'''" or "///"), most of the XML commenting details show up that I like. However, I typically add the history tag to the ...
6
votes
3answers
92 views

Class Documentation Suggestions

We are a Microsoft shop, concentrated on using C#. We have several projects, including websites, Windows services, and class libraries, that incorporate XML comments. I'm looking to generate ...
6
votes
2answers
135 views

How to auto linewrap comments in .NET?

I'd like to have a single command to auto-linewrap the XML-style comments in .NET. Example: /// <summary> /// This comment line should be /// on one line, and other lines in this ...
6
votes
1answer
384 views

C# - XML Commenting on partial classes/methods

Is there a standard way that the tools used to generate the API documents handle having XML Style comments on partial classes? Basically, how should one comment a partial class/method so that the ...
6
votes
2answers
717 views

Is it possible to wikify Visual Studio XML comments?

Is it possible to generate a set of wiki pages from XML comment file generated by Visual Studio? I'm talking about something like Sandcastle, but for wiki format instead of compiled CHM. Edit: I'm ...
6
votes
1answer
154 views

Reference generic comment

I was wondering if it is possible to reference a dynamic generic class name in a comment and have it conditionally resolved in the IDE? Simple base class example: // <summary> // Retrieves all ...
6
votes
3answers
1k views

Finding missing XML comments content with Visual Studio

Throughout or C# sourcecode we have a lot of comments that miss the actual content such like this: /// <summary> /// </summary> or this: /// <summary> /// /// </summary> ...
5
votes
1answer
100 views

XML Comments — How do you comment explicitly implemented interfaces properly?

Code: public interface IFoo { void Bar(); } public class FooClass : IFoo { /// <summary> ... </summary> /// <seealso cref="?"/> //How do you reference the IFoo.Bar() ...
5
votes
3answers
3k views

Using C#'s xml comment cref attribute with params syntax

In C#, I am trying to use <see cref="blah"/> to reference a method signature that contains the params keyword. I know this converts the parameter list to an array, but I can't even figure out ...
5
votes
6answers
2k views

.Net XML comment into API Documentation

Is there an easy way to produce MSDN-style documentation from the Visual Studio XML output? I'm not patient enough to set up a good xslt for it because I know I'm not the first person to cross this ...
4
votes
1answer
71 views

Why I can't see xml comments from external library?

Is it normal I can't see xml comments from external libraries? For example I have an external library with xml comments on methods. After making a reference to this library I was hoping that xml ...
4
votes
3answers
101 views

pyparsing - parse xml comment

I need to parse a file containing xml comments. Specifically it's a c# file using the MS /// convention. From this I'd need to pull out foobar, or /// foobar would be acceptable, too. (Note - this ...
4
votes
2answers
150 views

XML Comments — How (or where) do you create XML comments for your namespaces and library?

I understand that if you /// above a class, field, method, or property Visual Studio will start establishing XML-style comments for you. However, where can I go to add XML comments for my namespaces ...
4
votes
1answer
57 views

XML Commenting — How to properly mark a see also tag?

I have the following and I'm not sure how to properly reference this in my XML commenting: public static class FooExtensions { public static Nullable<T> FooX<T>(this Nullable<T> ...
4
votes
2answers
156 views

C#: A way to copy xml comments from a set of APIs to another similar set of APIs?

Suppose in Visual Studio I have a new project which contains some of the same APIs from an older project, and I would like to copy the xml documentation over to the new one. Is there a way I can do ...
4
votes
5answers
416 views

At what point do Stylecop settings stop being useful and start becoming annoying?

I work in a team where we use extensive ruleset in StyleCop and I am wondering what are the thoughts on the general point where such a tool stops being useful and starts becomes annoying. We also use ...
4
votes
4answers
1k views

Is it possible for Visual Studio 2008 Automatically create XML Comments tags without “Generate XML documentation file” checked (VB.NET only)?

When in VS 2008 if a developer hits the ''' it generates the XML comment tags for you, but this only works when the project setting for "Generate XML documentation file" is checked. Is there a way to ...
4
votes
3answers
643 views

XML comments in Resources.Designer.cs?

In my Visual Studio 2008 project, I have this project with Resources.resx which contains images and strings. In order to force myself and everyone else to write at least the XML comments, I enabled ...
4
votes
2answers
1k views

How to link / group overloads in C# XML comments?

In XML documentaiton comments for C#, is there a way to mark two or more functions to be overloads of each other, so that they reference each other automatically? Ideally, they'd also be grouped in ...
4
votes
3answers
874 views

Add XML Comments to class properties generated by the LINQ to SQL designer

I used the LINQ to SQL designer in Visual Studio to create an object model of a database. Now, I want to add XML comments to each generated property but I can't figure out how to do it without ...
3
votes
1answer
72 views

Getting Intellisense on the interface that a method implements if that method does not have its own XML comments

In Visual Studio 2010 is there a way to get Intellisense on the Interface that a method implements if that method does not have any XML comments of its own? I suppose something like this would be ...
3
votes
1answer
70 views

External comments are included in the reverse order, .Net Visual Studio

ETA: Visual Studio 2010 VB Express edition exhibits the same behaviour. ETA: Visual Studio 2010 C# Express edition does NOT exhibit the same behaviour. In VisualStudio 2008 VB Express edition, I ...
3
votes
1answer
52 views

Is it possible to put all the xml-comments of a solution into one xml-file?

I have a Visual Studio C# solution with 3 different projects in it. In each of the projects I've commented all the code using xml-comments. If I want the comments build into xml, I have to specify a ...
3
votes
2answers
108 views

XML Comments - How do you reference a dictionary indexer properly?

As the name states, I have no idea how to reference a dictionary indexer. Any help here? :) FYI, I've tried: <see cref="Item"/> <see cref="Item(Int32)"/> //Highly doubted this would ...
3
votes
1answer
75 views

XML Comments - How to comment multiple reasons for an exception?

Here's an example: public void DoSomething(String param1, String param2) { if (param1 == null) throw new ArgumentNullException("param1"); if (param2 == null) throw new ...
3
votes
0answers
129 views

XML Commenting — How to seealso to the method overload page? [closed]

Possible Duplicate: How to make a cref to method overloads in a <seealso> tag in C#? How can I XML comment my code so that I point to something like this instead of each individual ...
3
votes
3answers
216 views

XML Comments - Should see references be fully qualified?

Basically, when is it truly necessary (if at all) to use a fully qualified xml see reference: <see cref="T:MyNamespace.Sub.MyType"/> //Option 1 <see cref="T:MyType"> //Option 2 Also, ...
3
votes
2answers
205 views

Should you write XML comments for Interfaces, concrete implementations, or both?

The title pretty much says it all. Where do I apply my XML comments? Should I put a more generic XML comment in the interface and a more descriptive one on the implementing class? Like this: public ...
3
votes
1answer
287 views

Troubles wtih comments in XmlSerialzier

I try to load a XML file with this code: XmlSerializer xmlSerializer = new XmlSerializer(typeof(MyObject)); StreamReader reader = new StreamReader(fileName); object myobject = ...
3
votes
1answer
134 views

Checking for handling of exceptions in xml comments?

Is there any C# code analysis tool that can verify if exceptions that are in the XML comments are handled somewhere up in the call chain? Assuming only exceptions that need to be handled specifically ...
3
votes
3answers
166 views

Is this a valid XML comment?

Is the code below valid XML? <sometag attribute1="value1" <!-- attribute2="value2" --> attribute3="value3"> </sometag>
3
votes
2answers
3k views

Web.config: put an comment inside xml attributes

I want to put an comment in web.config file, something like this: <httpRuntime requestValidationMode="2.0" // require for [ValidateInput(false)] in .net-4.0 ...
3
votes
1answer
129 views

How to make Xml comments in VS 2008 work with Intellisense for enumerations?

It appears that not all Xml-Commenting shows up in Intellisense, but perhaps I am not doing it correctly? Anyway, I am trying to make it so that individual enumeration members in an enumeration list ...
3
votes
1answer
620 views

XML Comments <list> not displaying in IntelliSense

I am trying to get VB.NET XML Comments to work with IntelliSense, and maybe it doesn't work the way I think it does. ''' <summary> ''' Gets or sets the Patient Code. ''' <list ...
3
votes
2answers
380 views

How to see XML comments of the code from Reflector

I prefer to browse the assemblies using reflector even though i have source code with me specially in case when i move to new project. But I feel it would be nice if i could see the XML comments of ...
3
votes
14answers
1k views

Code documentation: How much is too much?

How much code documentation in your .NET source is too much? Some background: I inherited a large codebase that I've talked about in some of the other questions I've posted here on SO. One of the ...
2
votes
0answers
37 views

constructed generic type in cref part of xml-comment

I have generic exception class like this: public class DuplicateException<TEntity> : Exception { public TEntity Entity { get; set; } } And I have non-generic method which might throw ...
2
votes
0answers
52 views

Sandcastle/SHFB. Add platform icons and version info to help file pages

I am building help file for my library using Sandcastle Help File Builder. The library has three versions (.NET, Silverlight and Windows Phone 7) built from the same code base. I would like to add ...
2
votes
1answer
191 views

Visual Studio Disabling Missing XML Comment Warning

I came across this situation because i have a project that has over 500 warnings of Missing XML Comment I know the solution to remove this but that is basic and i wanted to know a generic solution for ...
2
votes
2answers
65 views

Comment template in VS2010

I have inherited an API which doesn't have proper comments, and I am working on changing that. Anyone know if there is some sort of mechanism to add a default XML comments to all the members of a ...
2
votes
1answer
96 views

How to specify language in xml comment <code> tag

Is there a way to specify what language is being used in the <code> tag used within an <example> tag in XML comments? I am using Sandcastle Help File Builder to test building ...

1 2 3