VS Macro to insert TODO
Here's another useful VS macro. When I write code there are always weird edge cases that I think of while so I like to liberally sprinkle // TODO: comments around. When you do this though you should always put in your alias and the date. That way someone who comes across your comment knows who to ask for further details, or can determine that a two year old TODO isn't likely to be an issue anymore.
Sub InsertToDo()
DTE.ActiveDocument.Selection.Text = "// TODO-" + Environment.UserName + "-" + DateTime.Now.ToShortDateString() + ": "
End Sub