Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-235-exe.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7af72fa932501128aed5eeb95dd755dbdf5be5ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Compiler options: /r:gtest-235-lib.dll
// Dependencies: gtest-235-lib.cs
using System;

class GettingStarted
{
	public static void Main ()
	{
		MyList<string> names = new MyList<string> ();
		names.AddAll<string> ();
	}
}