summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0245.cs
blob: 70a10ab5a78935b49cdacf9a80cf171fb0a5c93d (plain)
1
2
3
4
5
6
7
8
9
// CS0245: Destructors and object.Finalize cannot be called directly. Consider calling IDisposable.Dispose if available
// Line: 7

class Sample {
        void Close ()
        {
                this.Finalize();
        }
}