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
2010-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
CS0618-2-lib.cs
blob
713998671151dda8e27ed9add525313fc701a13d
1
using
System
;
2
3
[
System
.
Obsolete
(
"Class is obsolete"
,
false
)]
4
public class
ObsoleteDispose
:
IDisposable
5
{
6
public void
Dispose
() {}
7
public static
ObsoleteDispose Factory
{
8
get
{
9
return new
ObsoleteDispose
();
10
}
11
}
12
}