Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ICustomAdapter.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edde7b22cc07e2bf354b8c3894d44749380e9000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// System.Runtime.InteropServices.ICustomAdapter.cs
//
// Author:
//   Kevin Winchester (kwin@ns.sympatico.ca)
//
// (C) 2002 Kevin Winchester
//

namespace System.Runtime.InteropServices {

	public interface ICustomAdapter {
		object GetUnderlyingObject ();
	}
}