Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
9answers
974 views

What Are Best Practices For Documenting C# code with XML comments?

I'm going through some new code I just wrote and adding NDoc sytle comments to my classes and methods. I'm hoping to generate a pretty good MSDN style document for reference. In general, what are ...
11
votes
2answers
2k views

.NET xml docs - inheriting documentation

NDoc has an XML element inheritdoc which allows you to inherit documentation of a member from the parent class (or an implemented interface). However, Visual Studio (i.e. the C# compiler) does not ...
10
votes
4answers
1k views

Is SandCastle a dead project? [closed]

Microsoft killed NDoc when they released a CTP/Beta version of Sandcastle. And I rarely see information about new version of a usable version of sandcastle (with an integrated UI for example). The ...
9
votes
1answer
120 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> ...
6
votes
5answers
4k views

Anyone using nDoc or a similar tool to help with system documentation?

I'm looking at a few tools to help improve my documentation process, and nDoc came up during a discussion with another developer. Any suggestions or tools you might recommend?
6
votes
1answer
375 views

HelpInsight documentation in Delphi 2007

I am using D2007 and am trying to document my source code, using the HelpInsight feature (provided since D2005). I am mainly interested in getting the HelpInsight tool-tips working. From various ...
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 ...
3
votes
8answers
1k views

Tool for generation MSDN-like documentation from <summary> tags?

Does anyone know any tool like NDoc that could generate MSDN-like documentation out of XML comments in the C# code? I need it for .NET 3.5 and C#. Sandcastle maybe? Thanks. I just installed and ...
1
vote
0answers
66 views

.Net Reflection Issue with Methods

I've used NDoc for quite a while now using a customised build (i.e. slightly bug-fixed build) of NDoc Enhanced (http://sourceforge.net/projects/ndoc-e/) but I've run into a strange issue with methods ...
0
votes
0answers
46 views

NDOC : Generate documentation in these scenarios

I want to generate documentation from NDOC by providing only an XML file and not the dll. How can I achieve this? There is a scenario where I am generating chm file using NDOC by providing dll and ...
0
votes
0answers
77 views

NDOC Error building documentation.

Using .NET Framework 3.5, I have nant -0.91-alpha2 which has support for framework 3.5 but I am getting the following error when I try to build the documentation. Error building Documentation. ...
0
votes
1answer
238 views

How to generate msdn documentation in .net 4?

i know there used to be ndoc for .net 2 and below. and after some goggling i found ndoc3 which can support up to .net 3.5 but it doesn't support .net 4 yet. O yeh, btw i'm currently using vs web ...
0
votes
2answers
347 views

Documentation with NDOC3

I am working on a project documentation using NDOC3. The build fails when trying to document 3rd party DLLs (because I do not have the xml documentation for them). How could I address this issue ?