Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Destructors and object.Finalize cannot be called directly. Consider calling IDisposable.Dispose if available.
For more information, see Programming Essentials for Garbage Collection and Finalizers.
The following sample generates CS0245:
// CS0245.cs
using System;
using System.Collections;
class MyClass // : IDisposable
{
/*
public void Dispose()
{
// cleanup code goes here
}
*/
void m()
{
this.Finalize(); // CS0245
// this.Dispose();
}
public static void Main()
{
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.