GC::SuppressFinalize Method
Silverlight
Requests that the system not call the finalizer for the specified object.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- obj
- Type: System::Object
The object that a finalizer must not be called for.
| Exception | Condition |
|---|---|
| ArgumentNullException | obj is nullptr. |
This method sets a bit in the object header, which the system checks when calling finalizers. The obj parameter is required to be the caller of this method.
Objects that implement the IDisposable interface can call this method from the IDisposable::Dispose method to prevent the garbage collector from calling Object::Finalize on an object that does not require it.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Community Additions
ADD
Show: