Using <param> XML Tag in C# to create Intellisense in my DLL

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance



The code in my DLL:

/// <summary>
/// db_task..file_master_list
/// </summary>
/// <param name="panConnection">
/// Pass the PanApp.Connection object by reference
/// </param>
/// <param name="source_id">
/// Default Value = 0
/// </param>
/// <param name="frequency_cd">
/// Default Value = ""
/// </param>
public static int file_master_list(ref SqlConnection
panConnection, int source_id, string frequency_cd, string
search_string)
{
//code
return 0;
}

Yet no Intellisense.

I also added the pre-build event:
/doc:db_taskLib.dll.xml

And on the build, I got the error:
The command "/doc:db_taskLib.dll.xml" exited with code 123.

The xml file that gets created has none of the xml I typed in my source
code.

What else do i need to do to get this to work?
I am using VS 2005.

Thanks,
-Mike

.



Relevant Pages

  • Re: Using XML Tag in C# to create Intellisense in my DLL
    ... public static int file_master_list(ref SqlConnection ... panConnection, int source_id, string frequency_cd, string ... The xml file that gets created has none of the xml I typed in my source ...
    (microsoft.public.dotnet.languages.csharp)
  • Pattern matching question for Swindle
    ... I'm using PLT scheme with Swindle and SSAX to write a simple program which locates and plays songs using the iTunes Music Library XML file. ... (string "Rhapsody in Blue") ...
    (comp.lang.scheme)
  • Re: Read XML file using OOP
    ... // Open the XML file that has the XML text. ... string make = gcnew String carNode->Attributes ... private int _milage; ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: SAX - is there an equivalent to the DOM .nodeTypedValue for reading the whole node data at o
    ... SAX. ... decode this data and generate the appropriate images onto disk. ... Private Sub IVBSAXContentHandler_characters(text As String) ... The XML file will contain 100s of images, ...
    (comp.text.xml)
  • Re: XML JDOM
    ... I have some problem in one of my xml file which value "&" in it. ... String content_id = attribute.getValue; ... // get all root child elements ... for (Iterator iter = allChildren.iterator(); ...
    (comp.lang.java.programmer)