Exemple #1
0
 private BitArray CycleShiftL() //22
 {
     ThirdOperand = new BitArray(FirstOperand);
     ThirdOperand = ThirdOperand.CycleShiftL(SecondOperand.ToInt());
     return(ThirdOperand);
 }