a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
34 lines
578 B
C#
34 lines
578 B
C#
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.");
|
|
}
|
|
}
|
|
}
|
|
} |