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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0079-4.cs
blob
ec7687102c8d3a5442d04405b505c9f48c18e565
1
// CS0079: The event `Foo.BaseFoo.Changed' can only appear on the left hand side of `+=' or `-=' operator
2
// Line: 16
3
4
using
System
;
5
6
namespace
Foo
7
{
8
public delegate void
VoidHandler
();
9
10
public class
BaseFoo
11
{
12
public extern event
VoidHandler Changed
;
13
14
public string
Name
{
15
set
{
16
Changed
();
17
}
18
}
19
}
20
}