Align libmonoruntime vcxproj with makefile.
[mono.git] / mcs / errors / cs0245.cs
1 // CS0245: Destructors and object.Finalize cannot be called directly. Consider calling IDisposable.Dispose if available
2 // Line: 7
3
4 class Sample {
5         void Close ()
6         {
7                 this.Finalize();
8         }
9 }