API

  • Thread starter Thread starter Guest
  • Start date Start date
Santhu said:
How can we make a api in .net as we make it in java?

Mmm what do you mean with makin an API? An API is a application program
interface, a set of classes/methods/interfaces to developing something
for a specific program/system/framework
 
I want to have C# file and give the detail documentation about that class like no of functions in it, the classes which it inherits and add any comments if necessary etc.,

How can i do that in .net

Thank you
 
=?Utf-8?B?U2FudGh1?= said:
I want to have C# file and give the detail documentation about
that class like no of functions in it, the classes which it
inherits and add any comments if necessary etc.,

How can i do that in .net?

Write your class in C# using XML comments, and build the XML document
from that. You can then use something like NDoc to convert that into
HTML etc.
 
Back
Top