.NET API

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

Hello!

Does it exist some good API documentation over all .NET classes in a similar
way like the Java API.

I found it difficult to find in the documentation over the .NET classes.

Where exist the best documentation at the current time?

//Tony
 
Tony said:
Hello!

Does it exist some good API documentation over all .NET classes in a
similar way like the Java API.

I found it difficult to find in the documentation over the .NET
classes.
Where exist the best documentation at the current time?

On MSDN.

There are books that cover the entire .NET 1.0 API (nevermind 1.1 or 2.0).
The set runs over 17,000 pages and takes up an entire bookshelf. The books
are little more than the content of the MSDN pages printed in book form, so
save your money and use MSDN online or the help that's installed with the
product, which does contain a complete API reference and lots of tutorials -
you just need to learn how to search it effectively.

-cd
 
Tony Johansson said:
Does it exist some good API documentation over all .NET classes in a
similar way like the Java API.

I found it difficult to find in the documentation over the .NET classes.

Where exist the best documentation at the current time?

As Arnaud and Carl have already explained the MSDN online reference is the
best source of information.

I'd like to add, though, that IMO Google provides the best way to search it.
In case you don't know you can restrict Google's search to the MSDN site by
adding

site:msdn.microsoft.com

to your query string.

Regards,
Will
 
Back
Top