We all know that if you type \\\ on the line above a function or variable definition etc. what you get is:
///<summary> /// ///</summary> public void myRidiculouslyLongFunctionNameForNoParticularReason() { DoSomeStuff(); } |
or maybe
/// <summary> /// /// </summary> /// <param name="iVal"></param> /// <returns></returns> public double myLittleMathFunction(int iVal) { double rVal = DoSomeMaths(); return rVal; } |
And this is Great.
Does anyone know if it is possible to change/modify/add to the XML Documentation comments that are generated
For example, I want the automatically generated XML comments to include
///<remarks> /// ///</remarks> |
I realise I could type this in manually quite easily, but I am incredibly lazy and quite forgetfull, so I want VS2005 to do it for me!

XML Code Documentation
Marian Drumea
July 2005
XML Comments - Document your code in no time at all with Macros in Visual Studio by Tony CHow page 42
See if there is an online version for it. He has alot of pre-built code that may already do what you would like to do with little or no modification.
Ciro Fonseca
Thanks for that.
Omar Abid
found this:
http://msdn.microsoft.com/msdnmag/issues/05/07/XMLComments/default.aspx
jeevan rekha
Get it here: http://www.roland-weigelt.de/ghostdoc/