How do I resolve a `NotImplementedException`?

Question

Grade: Education Subject: Support
How do I resolve a `NotImplementedException`?
Asked by:
45 Viewed 45 Answers

Answer (45)

Best Answer
(218)
The solution is to implement the functionality within the method or property that is throwing the exception. Replace the `throw new NotImplementedException()` line with the actual code that performs the intended task.