Most of the times you might have needed a Task List to be maintained when your coding any Project. Some people have a Text Document created for logging these tasks. Actually Visual Studio has a built-in Task List window which is commonly un-noticed.
Just open a project and choose "View" in the Menu bar and then choose "Task List" under Other Windows option. This will open a small Task list windows at the bottom, tabbed next to the Error Window.
The best thing here is, it has two options on a drop-down. Choosing "Comments" will search your code for commented line with text " 'TODO: " and lists it there. The other option "Task list" will give you an option to have your own tasks added.
The 'TODO commenting feature might be very useful in situations where you might have incomplete codes or plans on improving code for future versions.
Hope you found this useful. Have you got some tips for us?