0
13
llucycodes42
This code is from a class that implements IDisposable. When the class is disposed of, the GC will suppress the finalizer for this class.
Shortcut: classd
public class MyClass : IDisposable
{
public void Dispose()
{
GC.SuppressFinalize(this);
}
}