A colleague of mine is using ObsoleteAttribute on not-yet-implemented methods so we get the warning at compile time.
Since a method to be implemented is in the exact opposite place of an obsolete one, however, that bugs me.
I don't see a NotYetImplementedButPleaseBePatientWeVeGotLoadsOfOtherThingsToDoAsWellAttribute in the documentation, so I'm figuring maybe we could create one.
ObsoleteAttribute is sealed, so we can't inherit it. (Yes, I found that out when I tried it. Nice try, me.)
Is there another way to imitate ObsoleteAttribute, but with a more appropriate name?