Hello,
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?
Thanks, brian
Hello,
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?
Thanks, brian
Yes, it's also
//TODO: My task
You can look up what tasks you have todo'd by looking at the "Task List"
In Visual Studio, click on the View menu then Task List. Use the drop down on the upper left corner of the Task List to view "Comments".
Bonus info: HACK and UNDONE are also keywords that show up in the list.
To add your own custom keywords, view the Tools->Options menu, selected Environment node, then Task List node.
//todo: whatever
//TODO: work on blah blah
//Todo new screenshot
All work (at least in 2008 and probably previous versions as well).
Try the following
This will now display all TODO comments found in your code base that appear inside comments.