When I hit /// in Visual Studio, is it possible to change the resulting snippet from this:
/// <summary>
///
/// </summary>
to this?:
/// <summary></summary>
|
When I hit /// in Visual Studio, is it possible to change the resulting snippet from this:
to this?:
|
||||
|
|
|
Here is the solution working in at least VS2010. Save the bottom code as a file summ.snippet. Now goto your code window and type summ + tab + tab Result
with the cursor in the middle of the tag, ready to type. Here is the contents of the summ.snippet
|
|||||
|
|
It appears to me that what the /// generates is coded in: Macros.Samples.Utilities.InsertDocComments |
|||
|
|
I know that it was possible for VB in VS 2005 and VS 2008. Last I had checked, though, there was not a way to do it for C#, sadly. That has been a pet peeve of mine for some time, now. |
|||||||||||
|