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
monotouch uses the real HttpWebRequest
[mcs.git]
/
tests
/
test-anon-74.cs
blob
2ee5127a8230294ee4508e483e62b034a36650ca
1
static class
Foo
2
{
3
delegate string
[,]
SimpleDelegate
();
4
5
static void
Baz
(
SimpleDelegate sd
)
6
{
7
sd
();
8
}
9
10
public static void
Main
(
string
[]
args
)
11
{
12
Baz
(
delegate
() {
13
return new string
[,]
{ { "aa" }
,
{ "bb" }
};
14
});
15
}
16
}