repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0250.cs
blob
15e2ba4185af73d9753b0d35e4647233cb3a0dd7
1
// cs0250.cs: Do not directly call your base class Finalize method. It is called automatically from your destructor
2
// Line: 9
3
4
class
BaseClass
{
5
}
6
7
class
DerivedClass
:
BaseClass
{
8
~
DerivedClass
() {
9
base
.
Finalize
();
10
}
11
}
12