Possible Duplicate:
Custom Compiler WarningsDuplicate: http://stackoverflow.com/questions/154109/custom-compiler-warnings/154254
I'm new to writing my own Attributes for .NET, but would like to write one that behaves similarly to the System.ObsoleteAttribute attribute--if a class/member is tagged with the attribute I would like any caller of that class/member to generate a warning.
Specifically I'd like to create an [Unimplemented] attribute--and in practice use it during development rather than throwing NotImplementedExceptions.
Does anyone know how to have the IDE evaluate it in real-time and generate a warning if an [Unimplemented] item is called?