コード例 #1
0
 public static ILAddressingReference CreateIndirectScaled(AddressingScaleFactor scale, int displacement)
 {
     return new ILAddressingReference { Scale = scale, Displacement = displacement, Mode = ILAddressingMode.IndirectScaled };
 }
コード例 #2
0
 public static ILAddressingReference CreateIndirectScaled(AddressingScaleFactor scale)
 {
     return new ILAddressingReference { Scale = scale, Mode = ILAddressingMode.IndirectScaled };
 }