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
/
tests
/
test-anon-56.cs
blob
26dacde38b82d4ba88c7b1d978e6e7f35a1e7ce0
1
2
delegate void
QueueHandler
(
Observable sender
);
3
4
class
Observable
{
5
static
QueueHandler Queue
;
6
7
public static void
Main
(
string
[]
args
) {
8
Queue
+= (
QueueHandler
)
delegate
{ System.Console.WriteLine ("OK"); }
;
9
}
10
}