SharkTooth
Programmer
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
/// <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