C# and API again

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

Guest

Hi people
I'm looking for a documentation of C# similar to java API, that is a list of all classes or namespaces (provided by the framework such as System)containing for each class the list of its methods and fields, and the description of them. Then for each method it give a list of input and output parameters, and for each field it give its type
I'd like to download it
Thanx to all
Bye, Stefano.
 
=?Utf-8?B?U3RlZmFubw==?= said:
I'm looking for a documentation of C# similar to java API, that is a
list of all classes or namespaces (provided by the framework such as
System)containing for each class the list of its methods and fields,
and the description of them. Then for each method it give a list of
input and output parameters, and for each field it give its type. I'd
like to download it. Thanx to all.

One again: THERE IS NO C# API !

Only CLR classes.
And there are some base classes (BCL) which are specified in the ECMA

http://download.microsoft.com/download/4/9/4/4948c5eb-5553-47cf-beb9-
a919027b1e9c/Partition_IV_Library.zip

http://download.microsoft.com/download/e/5/0/e50a98eb-5b98-455e-a58b-
0d36462eebde/XML.zip

http://download.microsoft.com/download/3/c/2/3c26966b-ce53-4d78-9076-
5cb8331844f1/TypeLibrary.zip


But MS has many extensions to this basic classes.
For a full documentation see online:
http://msdn.microsoft.com/library/en-us/dnanchor/html/netdevanchor.asp

Or order the MSDN-Library (which contains all docu).



--
Greetings
Jochen

Do you need a memory-leak finder ?
http://www.codeproject.com/tools/leakfinder.asp

Do you need daily reports from your server?
http://sourceforge.net/projects/srvreport/
 
Stefano said:
Hi people,
I'm looking for a documentation of C# similar to java API, that is a list
of all classes or namespaces (provided by the framework such as
System)containing for each class the list of its methods and fields, and the
description of them. Then for each method it give a list of input and output
parameters, and for each field it give its type.
I'd like to download it.
Thanx to all.
Bye, Stefano.

Buy "C# For Java Developers" ISBN 0-7356-1779-1
 
Stefano said:
I'm looking for a documentation of C# similar to java API, that is a list of all
classes or namespaces (provided by the framework such as System)containing
for each class the list of its methods and fields, and the description of
them.

You can download the .NET SDK from here: [watch wrap]
http://www.microsoft.com/downloads/...a6-3647-4070-9f41-a333c6b9181d&DisplayLang=en

This SDK contains the documentation you're looking for.
Alternatively, you can find the same information online at
http://msdn.microsoft.com/library/en-us/cpref/html/cpref_start.asp

Regards,
Pieter Philippaerts
 
Back
Top