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

gtest-019.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0903dea144f22e09c85acc43b11f542d6eb85ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// A very simple generic interface

public interface IEnumerator<T> {
	T Current { get; } 
	bool MoveNext();
	void Reset();
}

class X
{
	public static void Main ()
	{ }
}