help in intellisense..

  • Thread starter Thread starter ashish
  • Start date Start date
A

ashish

hi Folks,

just wondering how could i get help in intellisense help in assemblies
created by me, like i get when i access .net assemblies.
any help or pointers would be appreciated ...

thanks
 
You need to create XML documentation for those assemblies, which is very
easy with C#, but currently requires an external tool for VB.NET. Try VBXC
or VB Comment Creator (or many more)

Once you've created the XML documentation, make sure it's in the same
directory as the assembly when you create the reference in visual studio.
VS.NET will automatically copy over the .xml file and display the
information in intellisense.
 
* ashish said:
just wondering how could i get help in intellisense help in assemblies
created by me, like i get when i access .net assemblies.

<URL:http://msdn.microsoft.com/library/en-us/csref/html/vclrfProcessingXMLFile.asp>

Tools:

VB Commenter
<URL:http://www.gotdotnet.com/team/ide/>
-> "VB Commenter"

XML Documentation
<URL:http://www.gotdotnet.com/team/vb/>
-> "XML Documentation"

VBXC - VB.NET XML Commentor
<URL:http://vbxmldoc.tor-erik.net/>

NDOC (formerly DOC.NET)
<URL:http://ndoc.sourceforge.net/>

VB.DOC
<URL:http://vb-doc.sourceforge.net/>

<URL:http://www.gotdotnet.com/Community/Workspaces/Workspace.aspx?id=112b5449-f702-46e2-87fa-86bdf39a17dd>
 
Back
Top