Inazuma.Mono.Cecil.Cil.Instruction.Create C# (CSharp) 메소드

Create() 공개 정적인 메소드

public static Create ( OpCode opcode ) : Instruction
opcode OpCode
리턴 Instruction
		public static Instruction Create (OpCode opcode)
		{
			if (opcode.OperandType != OperandType.InlineNone)
				throw new ArgumentException ("opcode");

			return new Instruction (opcode, null);
		}

Same methods

Instruction::Create ( OpCode opcode, CallSite site ) : Instruction
Instruction::Create ( OpCode opcode, FieldReference field ) : Instruction
Instruction::Create ( OpCode opcode, Instruction target ) : Instruction
Instruction::Create ( OpCode opcode, MethodReference method ) : Instruction
Instruction::Create ( OpCode opcode, ParameterDefinition parameter ) : Instruction
Instruction::Create ( OpCode opcode, TypeReference type ) : Instruction
Instruction::Create ( OpCode opcode, VariableDefinition variable ) : Instruction
Instruction::Create ( OpCode opcode, byte value ) : Instruction
Instruction::Create ( OpCode opcode, double value ) : Instruction
Instruction::Create ( OpCode opcode, float value ) : Instruction
Instruction::Create ( OpCode opcode, int value ) : Instruction
Instruction::Create ( OpCode opcode, long value ) : Instruction
Instruction::Create ( OpCode opcode, sbyte value ) : Instruction
Instruction::Create ( OpCode opcode, string value ) : Instruction