Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0245.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de9c909b2f35b0f8944927cd6dd849ec891dbf5d (plain)
1
2
3
4
5
6
7
8
9
// cs0245.cs: Destructors and object.Finalize cannot be called directly. Consider calling IDisposable.Dispose if available
// Line: 7

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