Think Good
View list of my frequently visited bloglines
Tags - Categories : All | General | Software Development

Have you seen how javadoc generated documentation will look like ?, if not see here

Visual studio.NET IDE have also got a beautiful source code documentation generation tool
For C# , the simple syntax for writing the documentation(lets say for a method called getName...


	/// <summary>
	/// Gets name for the given categeory id
	/// </summary>
	/// <param name="catID">string based catID ....blah blah..
	/// <returns>returns category Name as string</returns>
	public string getUserProfile(string catID)
	{
	...
	}

For VB.NET , the syntax will be simillar but /// will be replace by '



	'<
	'Gets name for the given categeory id
	'</summary>
	'<remarks />
	Function getUserProfile(Dim catID as String) as String

	...
	End Function

Once you finished with the documentation, you can generate the documentation in html format by clicking
Tools -> Build Comment Webpages ...
It will generate a interactive webpage simillar to the screenshot shown below..

Also check out this link for C# documentation.


hello sir..send dotnet coding...


Add a comment

Title
Body
HTML : b, i, blockquote, br, p, pre, a href="", ul, ol, li
Math Quiz 8 + 9 = (Helps stop blog spam)
Name
E-mail address
Website
Remember me Yes  No 

E-mail addresses are not publicly displayed, so please only leave your e-mail address if you would like to be notified when new comments are added to this blog entry (you can opt-out later).

TrackBack to http://radio.javaranch.com/balajidl/addTrackBack.action?entry=1138361643953