As you're developing you often use things like
throw new NotImplementedException("Finish this off later")
or
// TODO - Finish this off later
as a placeholder to remind you to finish something off - but these can be missed and mistakenly end up in the release.
You could use something like
#if RELEASE
Finish this off later
#endif
so it won't compile in Release build - but is there a more elegant way?