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

ElementType.cs « metadata « Mono.PEToolkit « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8ac9f6c57adbc5dda3f02085fb021e46b1fc9a0 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Auto-generated file - DO NOT EDIT!
// Please edit md-schema.xml or elem-type.xsl if you want to make changes.

using System;

namespace Mono.PEToolkit.Metadata {


	/// <summary>
	/// Element types.
	/// </summary>
	/// <remarks>
	/// Partition II, 22.1.14 Element Types used in Signatures
	/// </remarks>
	public enum ElementType {

		End = 0x00,
		Void = 0x01,
		Boolean = 0x02,
		Char = 0x03,
		I1 = 0x04,
		U1 = 0x05,
		I2 = 0x06,
		U2 = 0x07,
		I4 = 0x08,
		U4 = 0x09,
		I8 = 0x0a,
		U8 = 0x0b,
		R4 = 0x0c,
		R8 = 0x0d,
		String = 0x0e,
		Ptr = 0x0f,
		ByRef = 0x10,
		ValueType = 0x11,
		Class = 0x12,
		Array = 0x14,
		TypedByRef = 0x16,
		I = 0x18,
		U = 0x19,
		FnPtr = 0x1b,
		Object = 0x1c,
		SzArray = 0x1d,
		CModReqd = 0x1f,
		CModOpt = 0x20,
		Internal = 0x21,
		Modifier = 0x40,
		Sentinel = 0x41,
		Pinned = 0x45,

	}

}