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-235.cs
blob
9a3ea01098add22ed2551d585862f0815de1f38c
1
// Compiler options: /r:gtest-235-lib.dll
2
using
System
;
3
4
class
GettingStarted
5
{
6
public static void
Main
()
7
{
8
MyList
<
string
>
names
=
new
MyList
<
string
> ();
9
names
.
AddAll
<
string
> ();
10
}
11
}