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
* TaskLoggingHelper.cs (LogErrorFromException): Add missing overload.
[mcs.git]
/
tests
/
test-anon-66.cs
blob
ca2b39e3d196f74708817158bbf606dfa8900ed0
1
public class
Test
2
{
3
public delegate void
TestEventHandler
();
4
public event
TestEventHandler testEvent
;
5
6
public event
TestEventHandler TestEvent
7
{
8
add
9
{
10
TestEventHandler fun
=
delegate
()
{ value (); }
;
11
fun
();
12
}
13
remove
{ }
14
}
15
16
public static void
Main
()
{ }
17
}