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
2008-09-29 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
gtest-363.cs
blob
243a65be720448ca0d312d8f184b45478647b368
1
public class
Test
2
{
3
public static void
InsertAt
<
T
> (
T
[]
array
,
int
index
,
params
T
[]
items
)
4
{
5
}
6
7
public static void
Main
()
8
{
9
int
[]
x
=
new int
[]
{1, 2}
;
10
int
[]
y
=
new int
[]
{3, 4}
;
11
InsertAt
(
x
,
0
,
y
);
12
}
13
}
14