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
bring Mono Security to monotouch
[mcs.git]
/
tests
/
test-558.cs
blob
d4256b3ba765c09cb461aa22b9654c310c1730b6
1
public class
TestClass
2
{
3
delegate void
OneDelegate
(
int
i
);
4
5
static void
Main
()
6
{
7
OneDelegate d
=
new
OneDelegate
(
TestMethod
);
8
d
.
Invoke
(
1
);
9
}
10
public static void
TestMethod
(
int
i
)
11
{
12
}
13
}