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
Warnings cleanup
[mcs.git]
/
tests
/
gtest-015.cs
blob
8f4e089e27dfb4438431d05282bbb0af4661b623
1
// Very simple example of a generic method.
2
3
class
Stack
<
S
>
4
{
5
public static void
Hello
<
T
,
U
> (
S s
,
T t
,
U u
)
6
{
7
U v
=
u
;
8
}
9
}
10
11
class
X
12
{
13
static void
Main
()
14
{
15
}
16
}