M
Manish Jain
Platform : Asp.Net/C#, Framework 1.1
--------------------------------------------
I have many overloads of constructors/other methods in most of my classes.
I want to provide some descriptive help when people cosume such classes,
just like MS does say when I say :
new DataSet(
and I get a list of constructors, along with a description of constructor,
and paramter in the second line.
The kind of comments I have right now are:
/// <summary>
/// This Constructor is to be used when a new Stage is being created
/// </summary>
/// <param name="ownerid">Owner ID</param>
/// <param name="stageid">Stage Identifier, Not recycled for an
owner</param>
/// <param name="processid">Process Identifier, recycle for each
Owner</param>
public ProcessStageInfo(int ownerid, int stageid, int processid)
{//......}
Can somebody suggest how this is possible? Basically what I want to know is
how to get the descriptive second line after the constructor list.
Manish
--------------------------------------------
I have many overloads of constructors/other methods in most of my classes.
I want to provide some descriptive help when people cosume such classes,
just like MS does say when I say :
new DataSet(
and I get a list of constructors, along with a description of constructor,
and paramter in the second line.
The kind of comments I have right now are:
/// <summary>
/// This Constructor is to be used when a new Stage is being created
/// </summary>
/// <param name="ownerid">Owner ID</param>
/// <param name="stageid">Stage Identifier, Not recycled for an
owner</param>
/// <param name="processid">Process Identifier, recycle for each
Owner</param>
public ProcessStageInfo(int ownerid, int stageid, int processid)
{//......}
Can somebody suggest how this is possible? Basically what I want to know is
how to get the descriptive second line after the constructor list.
Manish