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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
CS0619-51-lib.cs
blob
53f5d597e02e05c2b1eb8d515bffe9224d10b5e4
1
using
System
;
2
3
public delegate void
D
();
4
5
public class
A
6
{
7
[
Obsolete
(
"Please use ..."
,
true
)]
8
protected event
D comparer
{
9
add
{
10
}
11
remove
{
12
}
13
}
14
}