Exemplo n.º 1
0
 private BitArray CycleShiftR() //23
 {
     ThirdOperand = new BitArray(FirstOperand);
     ThirdOperand = ThirdOperand.CycleShiftR(SecondOperand.ToInt());
     return(ThirdOperand);
 }