Todo list in BCB is very useful, and it is integrated with code, developers can make a TODO tag very simply, and then quickly find it to continue unfinished work. Todo list is like this in the code:
1. When adding a TODO project, add a note in the following format:
// TODO [priority] [-o owner] [-C Category]: Description
The same is true for / * * / annotations
2. Find the unfinished work:
In the "View" menu, click "To-Do List" to open the TODO list, double-click the corresponding item
3, tag complete task
a. Change // TODO in the code to // DONE:
b. Select the corresponding item in the TODO list (in front tick)
4, delete a TODO project
a. Delete the corresponding comment
b. Select the corresponding item in the TODO list and select it in the pop-up menu.
5, global TODO with specific code, add directly to the TODO list
Use a good TODO list to improve programming efficiency, let your thinking continue to connect to the development of interruptions.