API Specifications For C#?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

In java, they have a full set of API specifications available for
development. Is there such an API for C#?
 
...
Firstly, the API specs for C# are common for the .NET framework, as the
framwork classes can be used from any language using the framework.


That's more similar to the "Java Language Specification" than what's meant
by the API for Java.

http://java.sun.com/docs/books/jls/index.html

The API-specs for the framework in .NET are usually installed together with
Microsofts development tools (e.g. Visual Studio.NET).

But if you want to look them up on the Internet:

http://msdn.microsoft.com/library/d.../en-us/netstart/html/cpframeworkref_start.asp

...or if the link above broke...

http://tinyurl.com/942ts


// Bjorn A
 
Back
Top