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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-558.cs
blob
0cefda8a68e156f81383f9a9a3814a2011865c2a
1
public class
TestClass
2
{
3
delegate void
OneDelegate
(
int
i
);
4
5
public 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
}