| 123456789101112131415161718 |
- //
- // System.Configuration.IConfigurationSystem
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- namespace System.Configuration
- {
- public interface IConfigurationSystem
- {
- object GetConfig (string configKey);
- void Init ();
- }
- }
|