示例#1
0
 public void VisitInstructionMethod(CilInstructionMethod instruction)
 {
     if (instruction is CallInstruction callInstruction)
     {
         VisitCallInstruction(callInstruction);
     }
     else if (instruction is CallVirtualInstruction callVirtualInstruction)
     {
         VisitCallVirtualInstruction(callVirtualInstruction);
     }
     else if (instruction is NewObjectInstruction newObjectInstruction)
     {
         VisitNewObjectInstruction(newObjectInstruction);
     }
     else
     {
         throw new ArgumentException($"CIL instruction method cannot be recognized: '{instruction.ToString()}'.");
     }
 }