Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

View all TODO items in Visual Studio using GhostDoc

I'm also using GhostDoc in Visual Studio 2008. How do I view all to-do items and if that's a function already in Visual Studio or in GhostDoc (the documentation tool that I use)?

like image 996
PositiveGuy Avatar asked Jan 29 '10 20:01

PositiveGuy


People also ask

How do I see all TODOs in Visual Studio?

From within Visual Studio Go to View -> Task List. This will display the Task List window and show you any area of your open Solution that has existing comments that start with // TODO .


1 Answers

If you are referring to TODOs that are defined with the // TODO comments, open the Task List and set it to the Comments filter.

Visual Studio - Task List - Comments

Also be careful with GhostDoc. Always read the comment that was generated. I remember that older versions would generate comments like: "Toes the string" for a method like ToString().

like image 99
Zyphrax Avatar answered Oct 07 '22 19:10

Zyphrax