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

gtest-209.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d06292c53f1e55d394a1803040a0afee34513854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Text;

namespace ClassLibrary3
{
	public class Dictionary1<TKey, TValue> : Dictionary<TKey, TValue>
	{ }

	public class Test
	{
		static void Main ()
		{
			Dictionary1<Guid, String> _D = new Dictionary1<Guid, string>();
			_D.Add(Guid.NewGuid(), "foo");
		}
	}
}