I'm trying to create documentation for my code and I'm using xml-comments for it. When a class is documented like the following:
/// <summary>
/// Main presentation window
/// </summary>
public partial class mainWindow : Form
{
}
The xml file will contain the following entry for mainWindow:
<member name="T:CaseManager.mainWindow">
<summary>
Main presentation window
</summary>
</member>
The T in T:CaseManager.mainWindow tells me it is "type: class, interface, struct, enum, delegate" and the rest tells me the namespace and name of the type. Is there anyway to make i specify what kind of type it is. For example by writing T:C:... for class, T:I:... for interface and so on.