views:

1005

answers:

3

I'm looking for something to turn my C# xml comments into documentation. I don't like chm's, nor msdn's look and feel. I love using the javadocs. They're easy to navigate, and everything is accessible. Is there a tool I can use to convert the comments in my code to a javadoc like look and feel.

Is there something that does this? I've tried sandcastle and it's various GUI's but they don't do what I want.

+4  A: 

Doxygen maybe?

Stuart Dunkeld
+1  A: 

ndoc is very similar to JavaDoc. I'd recommend it: http://ndoc.sourceforge.net/

j0tt
ndoc is dead isn't it?
Malfist
+1  A: 

Please see this question http://stackoverflow.com/questions/546053/anyone-using-ndoc-or-a-similar-tool-to-help-with-system-documentation/ You will find there a brief overview of different commercial and opensource tools

My vote is for SandCastle

Bogdan_Ch