Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

API documentation??

Status
Not open for further replies.

seanbo

Programmer
Jun 6, 2003
407
GB
you may all be aware that sun offers fantastic api documentation ( ), but i'm unable to find anything like this for c#.

where should i be looking? where do you go?
 
If you bought the Visual Studio product, you should have gotten online documentation - just press F1.

If you're running only the framework (compiling with CSC.EXE), then you'll need to go to msdn.microsoft.com and use the internet-based help.

In either case, the documentation is very good - it sometimes takes people a while to figure out how it's organized, but once they "get it", they generally like it.

I usually search in the index for the class name. If I'm not sure what the class is called, I'll start at the namespace level and work my way down. The sub-section that's usually called "overview" describes the class. You then go to "all members" to see the details about the properties/methods, etc for the class. Sometimes you need to drill down one more level if there's a bunch of overrides for a method to see the details for a particular override.

Chip H.
 
well i have got vs.net, but i'm not a fan of the documentation. but if you say most people like it once they've gotten their heads around it, then i guess i'll have to do that. wish me luck, i'm going in.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top