In C#, XML comments begin with three forward slashes (///). For example:
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
Is there any way to change the generated comment, for example to add additional tags? I thought there might be a snippet file that defines the XML, but I can't find one. Can anyone help?
UPDATE: As far as I can tell, the first answer to the existing question simply provides a snippet that inserts code on demand. Specifically, summ+tab+tab to insert a summary line. It doesn't seem to involve changing the XML inserted by ///, which is what I'm looking for.
Additional answers to that question say it can be done with macro InsertDocComments (but I don't think that's what's invoked by ///, or I don't know how to cause it to be), and another answer says it can't be done. So, if it really can't be done, oh well, but I'm still hoping.