Hi,
Possibly worth a mention that TODO [as used in the task list] is a user definable token.
For info on how to define your own tokens [such as “NOTE” which can be used for code maintenance to mark code that’s is potentially platform or compiler implementation dependant] check out https://msdn.microsoft.com/en-us/library/txtwdysk.aspx
Also if you place a value after each token in your comments [such as // TODO 1 … //TODO 32] and sort on the token name in the task list, you will get a sorted list of TODO’s in order of value you used rather than their position in the file.
so
// TODO 3
// TODO 1
// TODO 2
// FIXED 3
// FIXED 1
// FIXED 2
will give you a sorted task list that looks like
FIXED 1 class file line
FIXED 2 class file line
FIXED 3 class file line
TODO 1 class file line
TODO 2 class file line
TODO 3 class file line
Good luck and keep having fun 
Barry
