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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Collections/IEnumerator.cs')
-rw-r--r--mcs/class/corlib/System.Collections/IEnumerator.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/mcs/class/corlib/System.Collections/IEnumerator.cs b/mcs/class/corlib/System.Collections/IEnumerator.cs
deleted file mode 100644
index 06d250c8b7e..00000000000
--- a/mcs/class/corlib/System.Collections/IEnumerator.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// 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 ();
- }
-
-}