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/System.XML/System.Xml/XmlNodeList.cs')
-rw-r--r--mcs/class/System.XML/System.Xml/XmlNodeList.cs42
1 files changed, 0 insertions, 42 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlNodeList.cs b/mcs/class/System.XML/System.Xml/XmlNodeList.cs
deleted file mode 100644
index eff56279b55..00000000000
--- a/mcs/class/System.XML/System.Xml/XmlNodeList.cs
+++ /dev/null
@@ -1,42 +0,0 @@
-//
-// System.Xml.XmlNodeList
-//
-// Author:
-// Kral Ferch <kral_ferch@hotmail.com>
-//
-// (C) 2002 Kral Ferch
-//
-
-using System;
-using System.Collections;
-
-namespace System.Xml
-{
- public abstract class XmlNodeList : IEnumerable
- {
- #region Constructors
-
- protected XmlNodeList() { }
-
- #endregion
-
- #region Properties
-
- public abstract int Count { get; }
-
- [System.Runtime.CompilerServices.IndexerName("ItemOf")]
- public virtual XmlNode this [int i] {
- get { return Item(i); }
- }
-
- #endregion
-
- #region Methods
-
- public abstract IEnumerator GetEnumerator ();
-
- public abstract XmlNode Item (int index);
-
- #endregion
- }
-}