Tagged Questions
The xml-documentation tag has no wiki summary.
22
votes
9answers
3k views
Ways to synchronize interface and implementation comments in C#
Are there automatic ways to sync comments between an interface and its implementation?
I'm currently documenting them both and wouldn't like to manually keep them in sync.
UPDATE:
Consider this ...
19
votes
4answers
454 views
auto-document exceptions on methods in C#/.NET
I would like some tool, preferably one that plugs into VS 2008/2010, that will go through my methods and add XML comments about the possible exceptions they can throw. I don't want the ...
17
votes
4answers
3k views
C#: How to reference generic classes and methods in xml documentation
When writing xml documentation you can use <see cref="something">something</see>, which works of course. But how do you reference a class or a method with generic types?
public class ...
14
votes
4answers
3k views
C#: Xml-documentation for a namespace
Would you write xml-doc for a namespace? And if yes, how and where?
I would think, if it is possible, maybe an almost empty file like this:
/// <summary>
/// This namespace contains stuff
/// ...
14
votes
5answers
643 views
Extract xml comments for public members only
I'm using xml comments to document public as well as internal and private members of my components. I would like to package the generated documentation xml files with component assemblies in order to ...
13
votes
3answers
3k views
C#, XML-Doc: Refering to a generic type of a generic type in C# XML documentation?
Writing some xml documentation for a predicate helper class. But I can't figure out I can refer to an Expression<Func<T, bool>> without getting a syntax error. Is it even possible? I have ...
9
votes
1answer
453 views
C#, XmlDoc: How to reference method overloads
If I have these two methods
public Foo Get(string bar) { ... }
public Foo Get(int bar) { ... }
And write this piece of xml documentation on a different method
/// <summary>
/// Has a close ...
9
votes
1answer
1k views
How do I reference a C# keyword in XML documentation?
Title says it all; <see cref="switch" />, for example, doesn't work - I get the compilation warning: XML comment on ... has syntactically incorrect cref attribute 'switch'
Context for those ...
8
votes
1answer
520 views
How do you get XML comments to appear in a different project (dll)?
Consider:
/// <summary>
/// This method does something...
/// </summary>
public void DoSomething()
{
// code...
}
When using that method/class etc.. in a different dll the comments ...
8
votes
8answers
7k views
Open source tool to generate diagrams from XML Schema documents?
I'm looking for an open source tool to generate diagrams from XML Schema documents, similar to the Logical Model View in oXygen or the diagrams in XML Spy's Schema Editor.
6
votes
4answers
147 views
C# XML Documentation Tool, but one that saves documentation in another file
I know there are plenty of tools for .NET languages that work with XML comments to ease documentation (such as AtomineerUtils and GhostDoc) but they all require that the documentation be kept in /// ...
6
votes
4answers
944 views
How can I prevent Visual Studio from locking the xml documentation files in the bin directory?
My visual studio solution includes a web application and a unit test application. My web application uses log4net. I want to be able to use msbuild from the command-line to build my solution. However, ...
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 ...
5
votes
4answers
220 views
Missing summary tags for explicitly implemented interfaces?
Basically, I have the following code:
public class MyDictionary<TKey, TValue> : IDictionary<TKey, TValue>
{
/// <summary> My Summary </summary>
void ...
5
votes
1answer
144 views
How to add a line break in C# .NET documentation
This should be waaaay easier...
I want to add a "coded" line break to the XML documentation in my code
/// <summary>
/// Get a human-readable variant of the SQL WHERE statement of the search ...
5
votes
1answer
248 views
Visual Studio Intellisense for cref's in Xml Documentation
When you create XML Documentation for C# methods in Visual Studio (I'm using 2010), you receive Intellisense support for creating the various XML tags, such as see, paramref, etc. On the other hand, ...
5
votes
2answers
122 views
Summary is not showing in the assembly if it is added as a reference
I've created a 'Class Library' in C#, which has many functions with summary (XML documentation comments).
For example
///<summary>
///Adds the two numbres
///</summary>
public void Add()
...
5
votes
1answer
188 views
How to tag code in C# XML documentation
I have this function:
public static string Join(this IEnumerable<string> strings, string separator)
{
return string.Join(separator, strings.ToArray());
}
which I want to document.
I want ...
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
1answer
229 views
Show <returns> xml tag into visual studio intellisense
I added the xml tag to some of my methods but I can't see its content in the intellisense here is my code
/// <summary>
/// we all live in a yellow summary
/// </summary>
/// ...
4
votes
1answer
388 views
Visual Studio Object Browser disregards XML comment formatting
In my .NET XML comments on methods and classes, I try to provide usage examples in <example><code></code></example> blocks. When I use Sandcastle to generate a .chm ...
4
votes
4answers
148 views
Is there a tool which allows easy writing of documentation from an XML schema?
My application uses an XML file of some complexity for configuration. It's not much - about two dozen elements - but still non-trivial.
Currently I'm writing XML schema for it, and was wondering if ...
4
votes
4answers
922 views
How to document the structure of XML files
When it comes to documenting the structure of XML files...
One of my cooworkers does it in a Word table:
Another pastes the elements into a Word document with comments like this:
...
4
votes
1answer
558 views
Visual Studio: Warn on Missing XML Documentation for Private and Internal Members
I am using Visual Studio 2005 (VS.8.0) and I am looking to enforce the requirement that all class members, not just the public ones, be documented. While trivial to setup Visual Studio to generate ...
4
votes
2answers
751 views
Can implementation classes “inherit” XML comments from their implemented interfaces?
Curious question. I'm using Microsoft's Sandcastle to generate documentation from the XML comments in my C# code. Several of my classes are implementing interfaces which already have commented ...
4
votes
3answers
1k views
How to use XML documentation files
When using an external assembly which comes with an XML documentation file, how do I get visual studio to find it?
When having an XML documentation file, is there a program or xml transform file or ...
3
votes
1answer
107 views
What's the proper way to comment a constructor in a generic class?
What's the proper way to comment this? VS complains about it:
/// <summary>
/// Initializes a new instance of the <see cref="Repository"/> class.
/// </summary>
/// <param ...
3
votes
2answers
119 views
Are there any C# documentation tools that use a markup other than XML?
I'd like a documentation tool that uses a less verbose markup. Filling my comments with XML just seems like an unnecessary eye sore, and a huge waste of key strokes should I have to edit something ...
3
votes
1answer
714 views
Documenting using Sandcastle: Refering to enum value using <see>
I'm using Sandcastle 2.4.10520 and Sandcastle Help File Builder 1.8.0 to generate a .chm help file.
In my documentation, I'm using <see> tags.
If I try to refer an enum like <see ...
3
votes
2answers
531 views
How should comments for interface and class methods be different
I ran into this dilemma when working on an ASP.net web application using Web Client Software Factory(WCSF) in C#, and the same could apply to other platform and languages. My situation is like this:
...
3
votes
6answers
104 views
Need to choose a suitable language to write documentation in
Currently the documentation where I work is in a bit of a state. There isn't anywhere near enough of it, and the documentation that does exist is spread out over many word documents making it hard to ...
3
votes
4answers
959 views
XML Documentation Comments with Interfaces and implementing class(es)
I am documenting an assembly using XML Documentation Comments, from which a chm file will be created using Sandcastle.
My assembly contains various interfaces, each of which is implemented by one ...
3
votes
3answers
1k views
How to make a cref to method overloads in a <seealso> tag in C#?
I see in MSDN links such as "CompareOrdinal Overloads". How can I write such a link in C#?
I tried:
<seealso cref="MyMethod">MyMethod Overloads</seealso>
But the compiler gives me a ...
3
votes
3answers
610 views
Is there a way to use inline comments to document members in .NET?
Is there a way to document a member inline in .Net? Let me explain. Most tools that extract documentation from comments support some kind of inline documentation where you can add a brief after the ...
2
votes
0answers
44 views
Code Contracts + Sandcastle — Any way to customize the exceptions section?
I'm using Code Contracts ver: 1.4.40602.0
I copied the necessary Content and Transforms files
Sandcastle outputs the exceptions based upon my contract requirements
Example Code:
public class ...
2
votes
2answers
125 views
C# xml documentation: How to create Notes?
I want to achieve a similar thing to the yellow 'Note:' box in the remarks section on this MSDN page in my own documentation.
I'm using sandcastle and the sandcastle help file builder to generate a ...
2
votes
2answers
41 views
Visual studio show docs when pressing ctrl+space
For some reason I can see docs only for .net libraries. Is there a way to see my own or third party docs in Visual studio?
I would like to know if its possible to see docs when pressing ctrl+space in ...
2
votes
1answer
253 views
How do I customize the auto-inserted XML-comments in C#/VS2010 without external tools
If you type "///" VS2010 inserts an xml-doc block. However, there seems no way to customize the xml-doc templates which get inserted. I only found a way doing it for VB.NET or with external tools like ...
2
votes
3answers
127 views
Is there a reason methods in ASP.NET MVC Controllers don't appear to be XML documented?
I'm a huge fan of XML documentation in .NET.
However, I can honestly say I've never seen a tutorial or project where, for example, we had markup like this:
/// <summary>
/// dummy text
/// ...
2
votes
1answer
107 views
Detailed XML Documentation for field. Does it possible?
I have define a callback field and event property for it:
private Action<int, int, TaskCallbackArgs> _callbackEvent
/// <summary>
/// Provides a callback event for task.
/// ...
2
votes
1answer
143 views
How to scan a mixed mode C++/CLI assembly to create the intellisense XML?
We have a C++/CLI mixed mode assembly out of which we produce an XML file that we use for both, Sandcastle documentation and Intellisense.
We use a tool which scans the assembly and create all ...
2
votes
2answers
510 views
Is there a way to include the xsd:documentation in the C# class generated with XSD.exe?
I am using xsd.exe to generate a C# class from a collection of xsd files. The xsd file makes use of the <xsd:documentation> tag to include useful descriptions. Example:
<xsd:complexType ...
2
votes
1answer
456 views
Reference Prefixes in .NET XML Documentation
I've been attempting to fully document all types, methods, properties, etc. of a class library using XML comments but have run into a curious effect involving the cref attribute (used by see tags for ...
1
vote
2answers
44 views
How should I write XML comments to avoid repeating myself between the summary and returns tags?
When the purpose of a method is to calculate a value and return it, I find myself documenting it as follows:
/// <summary>
/// Calculates the widget count.
/// </summary>
/// <param ...
1
vote
1answer
76 views
C# commenting technique / reuse of comments
i am generally declaring fields in a class as a private field together with a public property which accesses this field from outside (nothing spectacular so far smile):
private bool doILookGood;
...
1
vote
1answer
46 views
Visual Studio XML summary comment on single line
How do I make the XML summary comment on one line by default?
Currently it does this when I type ///:
/// <summary>
///
/// </summary>
I'd like this:
...
1
vote
5answers
161 views
How to write comments / documentation for variables / fields / lists in VS 2010?
There is
///<summary>
///This is summary for some class or method
///</summary>
documentation for classes or methods. But how to write this for simple variables or lists?
I use Visual ...
1
vote
1answer
332 views
Xml documentation <code> tag shows C# for VB.NET code
I am trying to use the <code> tag inside the <example> tag to show a sample code in xml documentation. However, when I build the Sandcastle project, I see that it is shown as C#. There is ...
1
vote
1answer
76 views
How do I colorize class names in code samples in Sand Castle/MAML
I'm migrating to Sand Castle from nDoc to generate the doc for my class reference. nDoc does not support .net 2.0 and has many other limitations.
Earlier, with nDoc, I was able to apply nice coloring ...
1
vote
2answers
56 views
Centralized documentation file
As a documenation need, is there any tool/framework/whatever thing that lets write documentation in a centralized form (xml ?) that allow to publish it in different formats :
pdf,
html,
txt
but ...