| 1234567891011121314151617 |
- // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
- //
- // System.Xml.IXmlLineInfo.cs
- //
- // Author:
- // Jason Diamond ([email protected])
- //
- // (C) 2001 Jason Diamond http://injektilo.org/
- //
- namespace System.Xml.XPath
- {
- public interface IXPathNavigable
- {
- XPathNavigator CreateNavigator();
- }
- }
|