Re: Using <param> XML Tag in C# to create Intellisense in my DLL
- From: "Daniel O'Connell [C# MVP]" <onyxkirx@xxxxxxxxxxxxxxxxxxxxx>
- Date: Sun, 19 Feb 2006 01:25:26 -0600
<Michael.Suarez@xxxxxxxxx> wrote in message
news:1140205934.904071.37660@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
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.
Try enabling xml document file generation by going to the project
properties->Build and checking XMLdocumentation file.
.
- References:
- Using <param> XML Tag in C# to create Intellisense in my DLL
- From: Michael.Suarez@xxxxxxxxx
- Using <param> XML Tag in C# to create Intellisense in my DLL
- Prev by Date: Re: Class property with parameters
- Next by Date: partial class namespace in ASP.NET 2.0
- Previous by thread: Using <param> XML Tag in C# to create Intellisense in my DLL
- Next by thread: Re: Using <param> XML Tag in C# to create Intellisense in my DLL
- Index(es):
Relevant Pages
|