Method MatchRefanyval
MatchRefanyval(Instruction, out TypeReference)
Matches an instruction with opcode Refanyval.
public static bool MatchRefanyval(this Instruction instr, out TypeReference value)
Parameters
instrInstruction- The instruction to try to match.
valueTypeReference- The operand value of the instruction.
Returns
MatchRefanyval(Instruction, TypeReference)
Matches an instruction with opcode Refanyval.
public static bool MatchRefanyval(this Instruction instr, TypeReference value)
Parameters
instrInstruction- The instruction to try to match.
valueTypeReference- The operand value required for the instruction to match.
Returns
MatchRefanyval(Instruction, Type)
Matches an instruction with opcode Refanyval.
public static bool MatchRefanyval(this Instruction instr, Type value)
Parameters
instrInstruction- The instruction to try to match.
valueType- The operand value required for the instruction to match.
Returns
MatchRefanyval<T>(Instruction)
Matches an instruction with opcode Refanyval.
public static bool MatchRefanyval<T>(this Instruction instr)
Parameters
instrInstruction- The instruction to try to match.
Returns
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
instrInstruction- The instruction to try to match.
typeFullNamestring- The full name of the type that must be the instruction operand for the instruction to match.