Table of Contents

Method MatchRefanyval

Namespace
MonoMod.Cil
Assembly
MonoMod.Utils.dll

MatchRefanyval(Instruction, out TypeReference)

Matches an instruction with opcode Refanyval.
public static bool MatchRefanyval(this Instruction instr, out TypeReference value)

Parameters

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

Returns

bool
true if the instruction matches; false otherwise.

MatchRefanyval(Instruction, TypeReference)

Matches an instruction with opcode Refanyval.
public static bool MatchRefanyval(this Instruction instr, TypeReference value)

Parameters

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

Returns

bool
true if the instruction matches; false otherwise.

MatchRefanyval(Instruction, Type)

Matches an instruction with opcode Refanyval.
public static bool MatchRefanyval(this Instruction instr, Type value)

Parameters

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

Returns

bool
true if the instruction matches; false otherwise.

MatchRefanyval<T>(Instruction)

Matches an instruction with opcode Refanyval.
public static bool MatchRefanyval<T>(this Instruction instr)

Parameters

instr Instruction
The instruction to try to match.

Returns

bool
true if the instruction matches; false otherwise.

Type Parameters

T
The type that must be the instruction operand for the instruction to match.

MatchRefanyval(Instruction, string)

Matches an instruction with opcode Refanyval.
public static bool MatchRefanyval(this Instruction instr, string typeFullName)

Parameters

instr Instruction
The instruction to try to match.
typeFullName string
The full name of the type that must be the instruction operand for the instruction to match.

Returns

bool
true if the instruction matches; false otherwise.