示例#1
0
 public static ILInstruction GetLoadByteInstruction(ILoadByteInstruction instruction)
 {
     return(instruction == null ? null :
            new ILInstruction()
     {
         LoadByteInstruction = new LoadByteInstruction()
         {
             Value = instruction.Value
         }
     });
 }
 public virtual void VisitLoadByteInstruction(ILoadByteInstruction instruction)
 {
     Visit(instruction);
 }