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

gtest-493.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6fc4c446e0dc82aed830fc413730c76dda61513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections;
using System.Collections.Generic;

namespace MonoGenericIteratorTest
{
	public class MyType
	{
	}

	public abstract class MyCollectionBase<T> : Dictionary<string, T>
	{
		public new virtual IEnumerator GetEnumerator ()
		{
			return Values.GetEnumerator ();
		}
	}

	public class MyCollection : MyCollectionBase<MyType>
	{
	}

	class MainClass
	{
		public static void Main (string[] args)
		{
			MyCollection myCollection = new MyCollection ();

			foreach (MyType item in myCollection) {
				Console.WriteLine ("Success.");
			}
		}
	}
}