NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

OpCodeType Enumeration

Describes the types of the IL instructions.

[Visual Basic]
Public Enum OpCodeType
[C#]
public enum OpCodeType
[C++]
public enum OpCodeType

[JScript] In JScript, you can use the enumerations in the NGWS frameworks, but you cannot define your own.

Members

Member Name Description
Annotation Describes an IL instruction that can be ignored by most processors. These instructions are used to convey additional information for the use of particular IL processors.
Macro These are IL instructions that are used as a synonym for other IL instructions. For example, ldarg.0 represents the ldarg 0 instruction.
Nternal Describes a reserved IL instruction.
Objmodel Describes an IL instruction that applies to objects.
Prefix Describes a prefix instruction that specifies what action needs to be taken before the next instruction is executed.
Primitive Describes a built-in instruction.

Requirements

Namespace: System.Reflection.Emit

Assembly: mscorlib.dll

See Also

System.Reflection.Emit Namespace