Hi folks.
I've commented all my public methods/properties/etc with the <summary> and
<param> stuff, and compiled with /doc. The XML documentation file has been
generated. This is for a DLL that contains components people can use in
their .NET projects. When someone uses a property or method, I want
Intellisense to displays the XML documentation I wrote for the methods, just
like it does for inherent .NET methods.
Example:
If, in my DLL, I have this:
namespace Nate
{
public class MyClass
{
private MyClass()
{
}
/// <summary>
/// Does something useful.
/// </summary>
/// <param name="paramArgument>A useful parameter.</param>
public static void DoSomething(int paramArgument)
{
[...]
}
}
Quote:
}
then how do I get those XML comments to appear when, in another project,
someone referencing and using my DLL types:
using Nate;
namespace MyApp
{
public class Foo
{
public Foo()
{
MyClass.DoSomething(
}
}
Quote:
}
After the user presses the '(', Intellisense will display the method and
parameter info in the yellow tooltip. Problem is, I can't figure out how I
can link the documentation into the DLL so that it does this! Please help!
Nate