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
2007-05-25 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
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
}