Using <param> XML Tag in C# to create Intellisense in my DLL
- From: "Michael.Suarez@xxxxxxxxx" <Michael.Suarez@xxxxxxxxx>
- Date: 17 Feb 2006 11:52:14 -0800
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
.
- Follow-Ups:
- Re: Using <param> XML Tag in C# to create Intellisense in my DLL
- From: Jay R. Wren
- Re: Using <param> XML Tag in C# to create Intellisense in my DLL
- From: Daniel O'Connell [C# MVP]
- Re: Using <param> XML Tag in C# to create Intellisense in my DLL
- Prev by Date: Re: Storing a hash table in Session
- Next by Date: So how do you change the default pushbutton in a WinForm?
- Previous by thread: Storing a hash table in Session
- Next by thread: Re: Using <param> XML Tag in C# to create Intellisense in my DLL
- Index(es):
Relevant Pages
|