| 123456789101112131415161718 |
- //
- // System.Runtime.Remoting.IObjectHandle.cs
- //
- // Authors:
- // Gonzalo Paniagua ([email protected])
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- namespace System.Runtime.Remoting
- {
- public interface IObjectHandle
- {
- object Unwrap ();
- }
-
- }
|