Will MS Visual Studio 2008 show help on my own functions if I use Javadoc style comments for them?

StackOverflow https://stackoverflow.com/questions/218859

Question

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

Was it helpful?

Solution

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.

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top