| 123456789101112131415161718 |
- //
- // System.Configuration.IConfigXmlNode
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- namespace System.Configuration
- {
- interface IConfigXmlNode
- {
- string Filename { get; }
- int LineNumber { get; }
- }
- }
|