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

IEnumerator.cs « System.Collections « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06d250c8b7ed1b623ecb88ff9fde9193e7770cfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// System.Collections.IEnumerator
//
// Author:
//    Vladimir Vukicevic (vladimir@pobox.com)
//
// (C) 2001 Vladimir Vukicevic
//

using System;

namespace System.Collections {

    public interface IEnumerator {
	object Current { get; }

	bool MoveNext ();

	void Reset ();
    }

}