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
[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git]
/
mcs
/
tests
/
test-named-03.cs
blob
82307b5d8b763d5e044d8e63082d346d10b0c46f
1
using
System
;
2
3
class
C
4
{
5
delegate int
IntDelegate
(
int
a
);
6
7
static int
TestInt
(
int
u
)
8
{
9
return
29
;
10
}
11
12
public static int
Main
()
13
{
14
var
del
=
new
IntDelegate
(
TestInt
);
15
del
(
a
:
7
);
16
17
return
0
;
18
}
19
}