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-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0245.cs
blob
de9c909b2f35b0f8944927cd6dd849ec891dbf5d
1
// cs0245.cs: Destructors and object.Finalize cannot be called directly. Consider calling IDisposable.Dispose if available
2
// Line: 7
3
4
class
Sample
{
5
void
Close
()
6
{
7
this
.
Finalize
();
8
}
9
}