Idiomatic way of signaling unimplemented methods in C#

Viewed 889

I'm building the skeleton for a C# app and intend to leave a bunch of methods without implementation - returning dummy values. I intend to get back to them, but don't want to accidentally forget to implement any of them.

I'd like to signal when I reach a method that isn't implemented, and continue execution with the dummy value.

What's the idiomatic way of doing this?

5 Answers
Related