repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0250.cs
blob
5ce0fffdd8fd3afb3d3fbc406f92694e0dc68ddb
1
// CS0250: 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