View all TODO items in Visual Studio using GhostDoc

C#Visual Studio-2008TodoGhostdoc

C# Problem Overview


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)?

C# Solutions


Solution 1 - C#

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().

Solution 2 - C#

ReSharper has a nice ToDo explorer to get an overview of all todos -or custom keywords- comments.

Solution 3 - C#

Note that in Express versions like Visual Web Developer 2010 Express and Visual C# Express 2010, you need to be in Expert mode to enable the task list. Expert mode is at menu ToolsSettingsExpert Mode.

Then the option to open the list is in menu ViewTask List.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPositiveGuyView Question on Stackoverflow
Solution 1 - C#YvoView Answer on Stackoverflow
Solution 2 - C#bobView Answer on Stackoverflow
Solution 3 - C#Joel PeltonenView Answer on Stackoverflow