Beispiel #1
0
 public static ILInstruction GetLoadLongInstruction(ILoadLongInstruction instruction)
 {
     return(instruction == null ? null :
            new ILInstruction()
     {
         LoadLongInstruction = new LoadLongInstruction()
         {
             Value = instruction.Value
         }
     });
 }
 public virtual void VisitLoadLongInstruction(ILoadLongInstruction instruction)
 {
     Visit(instruction);
 }