можно таким образом
/// <include file='doc\Form.uex' path='docs/doc[@for="Form.CreateParams"]/*' />
/// <internalonly/>
/// <devdoc>
/// Retrieves the CreateParams used to create the window.
/// If a subclass overrides this function, it must call the base implementation.
/// </devdoc>
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)//метод
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
Такие комменты (описание методов/свойств )используются в класах майкрософт (C#).
П.с сам использую такую структуру комментов в js коде.