views:

269

answers:

2

For example in C# or in JavaScript documents.
If not, is there point in using Javadoc comments in ASP.NET programming?

+4  A: 

I'm pretty sure the answer to that is no, it won't. Why would you use Javadoc style comments rather than the XML comments? The XML comments will be automatically displayed by the Intellisense engine and also allow you to create external docs through tools like SandCastle.

Scott Dorman
Agreed - the XML comments are the way to go and give shippable documentation along with your components (via the XML files that get built).
David Mohundro
+1  A: 

Scott is correct, you should use the native XML comments to get the intellisense you are looking for. As far as Javascript intellisense, I think you need to create a special .js file (either manually or dynamically) with xml comments for this and then reference it within your .js files. Most .js libraries include these special .js commented files that you can reference for an example.

SaaS Developer