XML doc (short for XML documentation comments) are comments that form the documentation for C# programs
0
votes
2answers
17 views
Converting string of XML with <?xml version=“1.0”?> in it to XML
I am having issues with converting string to xml.string is in this format
String s = "<?xml ...
0
votes
1answer
51 views
How do I avoid Source Formatter from Unfolding XML Documentations?
Just a tiny question, every time I fold an XML document, I then click Ctrl-D (Format Source) and then it Unfolds them. How can I disable that? (I don't think there's an option for this, is there?)
...
0
votes
1answer
73 views
c# xmlnode select single node to remove
I have an XML document that has nodes/values like this:
<data name="btnAutoTrans" xml:space="preserve">
<value>Auto Trans</value>
</data>
<data name="btnDieEngine" ...
0
votes
1answer
113 views
How to populate a ListBox with Xml attributes from an Xml REST query?
I am using a wiki api to create a C# program where a user types in a keyword and searches, (if the user searches database the XML url would be: ...
0
votes
2answers
93 views
Simplest way to add XML doc to a WinRT project
We have a group of developers moving from C++ to C# and WinRT. We used D'Oxygen as part of our C++ developer builds, and I'd like to continue to have document generation as part of the developer build ...
1
vote
1answer
101 views
Intellisense not showing XMLDOC for referenced DLL
I'm using VS-2010 Ultimate version 10.0.30319.1 RTMRel (from the about box).
I have written a class library with lots of nice XMLDOC (imho). For reasons I don't want to get into when I use this ...
0
votes
0answers
99 views
vba xml replace node context
I try to replace a destination XML node with a source XML node:
I tried:
destination.childnodes(0).nodetypedvalue=source.childnodes(0).nodetypedvalue
That did work, but the formatting in the XML ...
4
votes
1answer
59 views
Serialize XmlDoc comments along with the data
I have a serializable class that I'd like to serialize with its data (of course) and also with its XmlDoc comments. Does anyone know of an existing library that does that job, or at least part of it?
...
2
votes
1answer
58 views
What's the syntax to inherit documentation from another indexer?
In my implementation I have this:
/// <inheritdoc cref="IInterface{T} this[,]"/>
public T this[long row, long column]
{
...
}
The XMLdoc is already present in the IInterface. How can I ...
0
votes
1answer
69 views
How to document type parameters in the method or property with return type of generic Action or Func
I have a very simple question, how would you document with xmldoc a method or a property with return type of generic Action or Func.
For example:
/// <summary>
/// Gets or sets the print ...
1
vote
4answers
2k views
Build Sandcastle Documentation When Building Visual Studio Project
I am using the Sandcastle Help File Builder to output my C# XML-DOC file to the Website format. How can I accomplish the samething from the command line so that I can add this as a build event in ...
2
votes
1answer
3k views
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 interface that I want to document first (baby steps), and it already has the XML ...
10
votes
2answers
219 views
How can I link to MSDN/official documentation from my C# XML documentation comments?
Given an XML comment on a class something like this:
///<summary>Handles the AuthenticateRequest event in the ASP.NET page request lifecycle to authenticate users.</summary>
...
3
votes
1answer
98 views
How to define programming language for the `<code>` element
How do I define programming language for the <code> element in XmlDocs?
I'm having XML examples, but they are highlighted as C# (since it's a C# project).
Example:
/// <code>
/// ...
7
votes
1answer
595 views
IDE Plugin for XMLDoc
there is an IDE Plugin out there (I think it was not free) which assists in writing XMLDocumention inside the IDE. I tried to search for it, but I cannot find it anymore. Anybody knows it?
2
votes
1answer
408 views
Proper xml comments on .NET interface
if there is an interface and a class that implements it and you want to have the the xml comment on it to be used in VS intellisense or documentation where would you put the xml comment? on the ...
1
vote
3answers
244 views
How programmatically extract type description which is shown by intellisense as hint
When I type some Class, e.g. Console, then press ctrl+space and intellisense show hint "Class System.Console Represents standart input, output and error streams...."
How programmatically get this ...
1
vote
1answer
779 views
What is the proper way to reference Embedded Resources in .net xmldoc comments?
I have a C# project that uses xml comments. I make chm files from them with Sandcastle via the Sandcastle Help File Builder. One of the member functions in this project makes use of an embedded ...