blob: 5ce0fffdd8fd3afb3d3fbc406f92694e0dc68ddb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0250: 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 ();
}
}
|