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-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-exmethod-21.cs
blob
6a9cba9f24de3b7d1daf1123df7315ab68581be8
1
using
System
;
2
using
External
;
3
4
interface
I
5
{
6
}
7
8
namespace
Outer
.
Inner
9
{
10
class
Test
{
11
static void
M
(
I list
)
12
{
13
list
.
AddRange
();
14
}
15
16
static void
Main
()
17
{
18
}
19
}
20
}
21
22
namespace
Outer
23
{
24
}
25
26
namespace
External
27
{
28
static class
ExtensionMethods
{
29
public static void
AddRange
(
this
I list
)
30
{
31
}
32
}
33
}