0
votes
1answer
31 views
What’s the meaning of the hashes at Enumerations?
I use GhostDoc for the XML-Documentation of my code, and it has a neat "auto-document"-function I use quite often, so now I used it on an enumeration and it came up with some strange hash-code I don't …
4
votes
4answers
49 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:
…
1
vote
0answers
19 views
Is there a tool to convert Javadoc into C# XML documentation?
Does anyone know of a tool that converts Javadoc comments into C# documentation comments?
3
votes
6answers
68 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 …
0
votes
1answer
23 views
Are there any standards for visually depicting XML file structures or schemas?
I have some XML files and schemas that I would like to document. Everything for this project is documented using NetBeans UML models, Microsoft Word documents, Microsoft Excel spreadsheets, and …
5
votes
1answer
138 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 …
0
votes
1answer
64 views
Where to put the XML documentation comments for an attached property ?
Hi all,
Assuming I have an attached property defined like that :
public static string GetMyProperty(DependencyObject obj)
{
return (string)obj.GetValue(MyPropertyProperty);
}
…
1
vote
0answers
124 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 …
3
votes
2answers
108 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, …
1
vote
1answer
79 views
How to get Emacs fill-paragraph to work on inline XML code doc in my C# modules?
This question is similar to Getting Emacs fill-paragraph to play nice with javadoc-like comments, but for C#.
I have comments like this:
/// <summary>
/// Of these Colonies, and ought to fall …
3
votes
1answer
69 views
Reference generic comment
Hi,
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 …
8
votes
9answers
498 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 …
7
votes
4answers
520 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
/// …
2
votes
1answer
162 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
236 views
C#: How to refer to default(T) and constructors in xml comments
I have this class you see below in the answer. There I can refer to for example the Value with <see cref="Value"/>, and the class itself with <see cref="GenericEventArgs{T}"/>.
How can I …
