NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

GC.SuppressFinalize

Indicates that the system should not call the Finalize method on a specified object that would normally require this call.

[Visual Basic]
Public Shared Sub SuppressFinalize( _
   ByVal obj As Object _
)
[C#]
public static void SuppressFinalize(
   object obj
);
[C++]
public: static void SuppressFinalize(
   Object* obj
);
[JScript]
public static function SuppressFinalize(
   obj : Object
);

Parameters

obj
The object whose Finalize method should not be called.

See Also

GC Class | GC Members | System Namespace