Better way to view C# API documentation

G

Guest

I found the .Net/C# API documentation included with Visual Studio .Net 2003 and on MSDN. I don't like the layout. I would like to use something close to the javadocs that are available for Java. Where I can see a complete list of classes. With the included docs you have to dig around the documentation to find what you need. For instance, the System.Object is not on the top level of documentation as are all the other System.* classes. you have to go into the System documentation to find Object. I just want a simple way to quickly view the classes and available API for C#. Are there any other representations of the C# API

Thanks
Steve
 
J

J.J. Feminella

Steve,

You could use the ILDASM disassembler tool to look at the classes and the
interfaces they expose in each assembly. You'd first have to know what
assembly an object is referenced in, though. (For instance, System.Object is
in mscorlib.dll, not System.dll.) But if you're just interested in seeing a
bird's eye view, ILDASM might be the way to go.

Best wishes,
JJ Feminella

steve said:
I found the .Net/C# API documentation included with Visual Studio .Net
2003 and on MSDN. I don't like the layout. I would like to use something
close to the javadocs that are available for Java. Where I can see a
complete list of classes. With the included docs you have to dig around the
documentation to find what you need. For instance, the System.Object is not
on the top level of documentation as are all the other System.* classes.
you have to go into the System documentation to find Object. I just want a
simple way to quickly view the classes and available API for C#. Are there
any other representations of the C# API?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top