Пример #1
0
 public static void fill(InstructionsPack p7)
 {
     p7.Length(some_byte);
     {
         var item = p7.Instructions();
         for (int i = 0; i < item.len(); i++)
         {
             item.set(some_byte, i);
         }
     }
 }
Пример #2
0
 public static void onInstructionsPack(InstructionsPack p7)
 {
     var some_Length = p7.Length();
     {
         var item = p7.Instructions();
         for (int i = 0; i < item.len(); i++)
         {
             some_byte = item.get(i);
         }
     }
 }
Пример #3
0
 public InstructionsPack_src_adapter(InstructionsPack src)
 {
     this.src = src;
 }
Пример #4
0
 public InstructionsPack_dst_adapter(InstructionsPack dst)
 {
     this.dst = dst;
 }