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

CoClassAttribute.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c947887612d146ae521055dfd2eafcb418aea1b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// System.Runtime.InteropServices.CoClassAttribute.cs
//
// Name: Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

namespace System.Runtime.InteropServices {

	[AttributeUsage (AttributeTargets.Interface)]
	public sealed class CoClassAttribute : Attribute
	{

		Type klass;
		
		public CoClassAttribute (Type coClass)
		{
			klass = coClass;
		}

		public Type CoClass {
			get { return klass; }
		}
	}
}