TUP.AsmResolver.NET.Specialized.MSIL.MSILInstruction.Create C# (CSharp) Method

Create() public static method

public static Create ( MSILOpCode opcode, object operand ) : MSILInstruction
opcode MSILOpCode
operand object
return MSILInstruction
        public static MSILInstruction Create(MSILOpCode opcode, object operand)
        {
            MSILInstruction instruction = new MSILInstruction()
            {
                OpCode = opcode,
                Operand = operand,
            };
            return instruction;
        }

Same methods

MSILInstruction::Create ( MSILOpCode opcode, uint metadataToken, NETHeader netHeader ) : MSILInstruction