| 12345678910111213141516171819202122 |
- // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
- //
- // System.Xml.XmlNamespaceManager.cs
- //
- // Author:
- // Jason Diamond ([email protected])
- //
- // (C) 2001 Jason Diamond http://injektilo.org/
- //
- using System.Collections;
- namespace System.Xml
- {
- public class XmlNamespaceManager : IEnumerable
- {
- public IEnumerator GetEnumerator()
- {
- return null;
- }
- }
- }
|