GoodMorningSky said:
In java I can make documentation of all API I created.
In C#, there is tags such as <summary> for documentation. However I don't
know the tool like java tool. How to do so?
The C# compiler (csc) will generate XML documentation if you set the
/doc switch (there's an option in the project settings in VS.NET as
well).
Once you have this, you can use the free NDoc tool
(
http://ndoc.sf.net) to turn that into MSDN/.NETFrameworkSDK style,
JavaDoc, or a custom style.
HOWEVER... XML comments quickly become unwieldy, even if you use
<include> to include them from a separate file.
For a large project/API, we ended up having to resort to a
commercial product: Document!X
http://www.documentx.com/
It's kinda pricey, but it's amazing and makes editing .NET
API docs simple without all the XML comment unsightliness.
-c