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

ComMemberType.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e66ff211d116274a75c46d758fa200c914813ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

// System.Runtime.InteropServices/ComMemberType.cs
//
// Paolo Molaro (lupus@ximian.com)
//
// (C) 2002 Ximian, Inc.

using System;

namespace System.Runtime.InteropServices
{
	[Serializable]
	public enum ComMemberType {
		Method  = 0,
		PropGet = 1,
		PropSet = 2
	}
}