Question JavaDoc for VS.NET 2010

raysefo

Well-known member
Joined
Jul 21, 2010
Messages
207
Programming Experience
Beginner
Hi,

I m new to VS.NET 2010 and i would like to know if there is a tool like JavaDoc in VS.NET 2010?

Best Regards
 
how to write comments like in Java?

Tell me how to write comments with MSDN as javadoc does in java???
 
What do you mean by "write comments"? Both are a series of pages displaying the Properties, Methods, etc with usage examples or objects/code concepts, not a comment board (like a forum or facebook)
 
there is a misunderstanding here :) What i want to do is, like in Java , when you write javadoc comments before methods, classes vs. you can get documentation easily. Is there a way to do it in VS.NET 2010?
 
I think I know what you're talking about (I've done very little Java programming and it was years ago when I did). VS (VB.Net and C#) do support the xml description comments on Classes, Properties, Methods, etc. Just type 3 single quotes at the beginning of a class, method or property and press enter, VS 2008 and 2010 will insert the xml comment shell (with the parameters) and all you have to do is fill it in. Here's more info on it: Documenting VB.NET source code with XML Comments

For C# you type in three forward slashes (instead of 2) to get the same thing.
 
Back
Top