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
2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-exmethod-31.cs
blob
9ef1ad1e480f2860375351d69b3d4ae90fc27758
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
using
N2
;
4
5
namespace
N
6
{
7
static class
S
8
{
9
internal static void
Map
<
T
>(
this int
i
,
Func
<
T
,
string
>
f
)
10
{
11
}
12
}
13
}
14
15
namespace
N2
16
{
17
static class
S2
18
{
19
internal static void
Map
(
this int
i
,
int
k
)
20
{
21
}
22
}
23
}
24
25
namespace
M
26
{
27
using
N
;
28
29
class
C
30
{
31
public static void
Main
()
32
{
33
1
.
Map
(
2
);
34
}
35
}
36
}