Table of Contents

Method MatchBneUn

Namespace
MonoMod.Cil
Assembly
MonoMod.Utils.dll

MatchBneUn(Instruction, out ILLabel)

Matches an instruction with opcode Bne_Un or Bne_Un_S.
public static bool MatchBneUn(this Instruction instr, out ILLabel value)

Parameters

instr Instruction
The instruction to try to match.
value ILLabel
The operand value of the instruction.

Returns

bool
true if the instruction matches; false otherwise.

MatchBneUn(Instruction, ILLabel)

Matches an instruction with opcode Bne_Un or Bne_Un_S.
public static bool MatchBneUn(this Instruction instr, ILLabel value)

Parameters

instr Instruction
The instruction to try to match.
value ILLabel
The operand value required for the instruction to match.

Returns

bool
true if the instruction matches; false otherwise.

MatchBneUn(Instruction, Instruction)

Matches an instruction with opcode Bne_Un or Bne_Un_S.
public static bool MatchBneUn(this Instruction instr, Instruction value)

Parameters

instr Instruction
The instruction to try to match.
value Instruction
The operand value required for the instruction to match.

Returns

bool
true if the instruction matches; false otherwise.