show/hide this revision's text 2 edited tags
show/hide this revision's text 1

How do you flag code so that you can come back later and work on it?

In C# I use the #warning and #error directives.

#warning This is dirty code...
#error Fix this before everything explodes!

This way the compiler will let me know that I still have work to do. What technique do you use to mark code so you won't forget about it?

    Post Made Community Wiki by Community