Top "Xml-documentation" questions

XML documentation is the way to generate automatic documentation from comments inside the code, to an XML formatted file that can be shown with any method, for e.g. a web page.

What's the proper way to comment a constructor in a generic class?

What's the proper way to comment this? /// <summary> /// Initializes a new instance of the <see cref="Repository"/&…

c# visual-studio visual-studio-2010 stylecop xml-documentation
How can I disable a specific warning for a C# project in VS2012?

I am trying to generate partial XML documentation during my build process for a C# project in VS2012. When I …

c# visual-studio-2012 suppress-warnings xml-documentation
Using doxygen to create documentation for existing C# code with XML comments

I've read everywhere that doxygen is the way to go for generating documentation for C# code. I've got a single …

c# documentation doxygen xml-documentation
How do I reference a C# keyword in XML documentation?

<see cref="switch" />, for example, doesn't work - I get the compilation warning: XML comment on ... has syntactically …

c# keyword xml-documentation
How to generate XML documentation for CSPROJ with multiple targets

I have a library project that has multiple targets, e.g. in the CSPROJ file it has: <TargetFrameworks>…

c# msbuild xml-documentation
How do I make xml documentation in Visual Studio 2012

How can I generate documentation of my C# web application in Visual Studio 2012, like Eclipse does?

c# visual-studio visual-studio-2012 xml-documentation
How do you get XML comments to appear in a different project (dll)?

/// <summary> /// This method does something... /// </summary> public void DoSomething() { // code... } When using that method/class etc... …

c# .net xml-documentation
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 …

.net visual-studio-2008 xml-documentation
Which C# XML documentation comment tag is used for 'true', 'false' and 'null'?

Which C# XML documentation comment tag is used for the literals true, false and null? In Microsoft's own documentation, these …

c# styles literals xml-documentation
Using Markdown for source code documentation

I am looking for an alternative to C#'s XML source code documentation which introduced by the very nature of …

c# markdown documentation-generation xml-documentation