cerlendson
Programmer
I created a DLL and I used descriptive documentation in it. By "descriptive documentation" I mean that I put the following documentaion in above all of my proceedures:
/// <summary>
/// example proceedure discription
/// </summary>
public void example()
{
....
}
But when I complile the DLL and then reference it in another program I can't get the discription to come up in visual studio. You know how when you type in a class and then hit "." all the members come up with thier summaries? That is what I want to happen with the class in my DLL.
Any sugestions?
/// <summary>
/// example proceedure discription
/// </summary>
public void example()
{
....
}
But when I complile the DLL and then reference it in another program I can't get the discription to come up in visual studio. You know how when you type in a class and then hit "." all the members come up with thier summaries? That is what I want to happen with the class in my DLL.
Any sugestions?