NotImplementedException Class
.NET Framework 2.0
The exception that is thrown when a requested method or operation is not implemented.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
System Namespace
Exception Class
Assembly: mscorlib (in mscorlib.dll)
NotImplementedException uses the default Equals implementation, which supports reference equality. For a list of initial values for an instance of NotImplementedException, see the NotImplementedException constructors.
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
NotImplementedException MembersSystem Namespace
Exception Class
Other Resources
Handling and Throwing Exceptions
Prefer throwing NotSupportedException over NotImplementException
NotImplementedException should only be thrown when a member has not been implemented, but will be throughout the course of a product cycle. Throwing one indicates that implementation of a member has not been completed, if you want to throw an exception to indicate that a member is not supported, throw NotSupportedException.
- 6/19/2006
- David M. Kean
- 6/15/2007
- David M. Kean