Beispiel #1
0
 public IntExpression ShiftRight(IntExpression rhs)
 {
     return(Shift.Create(this, rhs, false));
 }
Beispiel #2
0
 /// <summary>
 /// operator&lt;&lt; not overridable in the way I would like
 /// </summary>
 public IntExpression ShiftLeft(IntExpression rhs)
 {
     return(Shift.Create(this, rhs, true));
 }