We all know that if you type \\\ on the line above a function or variable definition etc. what you get is:
or maybeCode:///<summary> /// ///</summary> public void myRidiculouslyLongFunctionNameForNoParticularReason() { DoSomeStuff(); }
And this is Great.Code:/// <summary> /// /// </summary> /// <param name="iVal"></param> /// <returns></returns> public double myLittleMathFunction(int iVal) { double rVal = DoSomeMaths(); return rVal; }
Does anyone know if it is possible to change/modify/add to the XML Documentation comments that are generated?




StoneTheCrows
Reply With Quote