help with summary tags in .net
Hello,
In the name of documenting my code, I've been using the summary tag to document classes, functions, etc. For some reason, however, I can only see the results in IntelliSense when I'm coding inside of the class in which I've documented. In otherwords, if I have a function, foo, in a class called class1 as follows:
/// <summary>
/// Function foo is a function.
/// </summary>
/// <param name="sString">This is a string parameter</param>
/// <returns></returns>
public string foo(string sString)
{
return sString;
}
If I call this function from within class1 I can see the summary in IntelliSense. However, if I instantiate class1 in another class, and call function foo, neither the summary nor the param info appears in IntelliSense.
Am I doing something wrong here?
Thanks in advance for any replies!
Greg Burns.
|