Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

/// <summary>, not working...

Status
Not open for further replies.

SharkTooth

Programmer
Aug 12, 2004
29
US
I added these comments "///" (below is an example) to help the developers use the classes and methods I am adding the library. When I instantiate an object in the same project I get help, from the comments in the IDE. However if I add the library to another project I don't get the help. How can I make sure I pass the help around?


/// <summary>
/// Method accepts an SP name and Parameters and returns a DataSet that includes a table with the provided name.
/// </summary>
/// <param name="sql"></param>
/// <param name="param"></param>
/// <param name="tbName"></param>
/// <returns>A DataSet that includes a table with the provided name.</returns>
public DataSet GetOracleProcDataSet(string sql, object[,] param, string tbName)

Thanks

 
Thanks; do you have any information on how I generate the XML and/or where I can find it to include it in a distribution? Actually developers normally will just reference the DLL in their project, I wonder what the other step would be so they can get the help from the XML file.

Thanks for your help
 
You have to set the option in the project build properties to tell the compiler to create the XML docs.

You just put the XML file in the same directory as the DLL.

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
You might also want to look at NDoc:
It has the ability to turn your source comments into a HTML help file.

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top