Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

//TODO flag in VS .Net

In eclipse, if you write a comment such as //TODO something-or-other, you are able to track and navigate back to all of your TODOs via a Task Pane. Is there any similar device in VS?

like image 462
Brian Sweeney Avatar asked Jun 23 '09 20:06

Brian Sweeney


People also ask

How do you write Todo in C++?

Place the cursor somewhere in the source, then either a right mouse click and select "Add ToDo Item" or just Shift+Ctrl+T. Just embed C/C++ style comments within your code that are prefaced by the identifier "TODO:".

How do you add a TODO comment in HTML?

Place the caret where you want to create a TODO item and add a comment, for example, by pressing Ctrl+/ , then type TODO or FIXME , and then type your note.

What is task list in Visual Studio?

Visual Studio provides several tool windows helping developers to keep track of their project. Task list collects information from source code, so it is available at one place all together.


2 Answers

Menu => View => Task List
In the combo box select "Comments"

like image 99
weiqure Avatar answered Oct 15 '22 03:10

weiqure


//todo: whatever
//TODO: work on blah blah
//Todo new screenshot

All work (at least in 2008 and probably previous versions as well).

like image 25
MDStephens Avatar answered Oct 15 '22 01:10

MDStephens