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

gtest-322.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29e0f47bfef9122e756caa1fb3a06e0ad3b02898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class MyBase<K, V>
{
	public delegate void Callback (K key, V value);
    
	public MyBase (Callback insertionCallback)
	{ }
}

public class X : MyBase<string, int>
{
	public X (Callback cb)
		: base (cb)
	{ }

	public static void Main ()
	{ }
}