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

cs0250.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15e2ba4185af73d9753b0d35e4647233cb3a0dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0250.cs: Do not directly call your base class Finalize method. It is called automatically from your destructor
// Line: 9

class BaseClass {
}

class DerivedClass: BaseClass {
        ~DerivedClass () {
                base.Finalize ();
        }
}