web analytics

Tracking TODO tasks in Visual Studio

Options

codeling 1595 - 6639
@2015-12-18 12:31:17

Visual Studio has a useful 'Task List' feature that lists locations in the code marked with a “TODO”, this feature allows you track what you need to be doing.

All you need to do is to add TODO comments in your code:

 

//TODO:What if there are two conditions in the expression??

if (this._whereClausefields.Count > 0)

{

StringBuilder expressionBuilder = new StringBuilder();

 

@2015-12-18 12:34:55

If you didn't see the 'Task List' pane in the IDE, then go to View menu , select Task List.

Comments

You must Sign In to comment on this topic.


© 2024 Digcode.com