views:

548

answers:

1

When I hit /// in Visual Studio, is it possible to change the resulting snippet from this:

/// <summary>
/// 
/// </summary>

to this?:

/// <summary></summary>
+3  A: 

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.

joseph.ferris
Say it ain't so! :(
Daniel Schaffer
Sadly, it has become a habit of mine to just go in and change it when it is inserted. It is almost like I do it on autopilot now. Not sure if any third-party apps or add-ins address this or not.
joseph.ferris
Yeah, I've been doing it manually, and I don't want to run a 3rd party app or add-in just for this. Thanks!
Daniel Schaffer
@joseph.ferris How do you do this in VB? [This question](http://stackoverflow.com/questions/1610318/vb-net-automatic-xml-comments-can-i-change-the-automatic-defaults) wants to know.
Mark Hurd