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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
errors
/
cs0245.cs
blob
70a10ab5a78935b49cdacf9a80cf171fb0a5c93d
1
// CS0245: 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
}