Here's a hack that you can use this evil, but it works. Add the following class to the project. Just remember to get rid of it before releasing it for production or making it compatible with the original.
namespace System { [Obsolete("Fix this")] public class NotImplementedException : Exception { public NotImplementedException() : base() {} public NotImplementedException(string message) : base(message) {} public NotImplementedException(string message, Exception innerException) : base(message, innerException) {} protected NotImplementedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) {} } }
This will cause all NotImplementedExceptions in your code to display as warnings.
This is a type interception method for source code that I used once or twice before. I usually do not recommend doing such things unless you really know what you are doing.
source share