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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
tests
/
gtest-481.cs
blob
6a51fe7c3449db71b2ac77730d44aae78527addd
1
public class
TestClass
<
T
>
2
{
3
private
T
[][]
m_data
;
4
5
public
TestClass
(
int
arrSize
)
6
{
7
Add
(
ref
m_data
);
8
}
9
10
private static void
Add
(
ref
T
[][]
arr
)
11
{
12
}
13
}
14
15
class
C
16
{
17
public static void
Main
()
18
{
19
new
TestClass
<
decimal
> (
4
);
20
}
21
}