| 12345678910111213141516171819 |
- //
- // System.Runtime.Remoting.Contexts.IDynamicProperty..cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Runtime.Remoting.Contexts {
- public interface IDynamicProperty {
- string Name {
- get;
- }
- }
- }
|