示例#1
0
 public BitComparator(IXOr xOr, IAnd and, IOr or, INot not)
 {
     _xOr = xOr;
     _and = and;
     _or  = or;
     _not = not;
 }
示例#2
0
 public ByteXOr(IXOr xOr, IByteFactory byteFactory)
 {
     _xOr         = xOr;
     _byteFactory = byteFactory;
 }
示例#3
0
 public BitAdder(IXOr xOr, IOr or, IAnd and)
 {
     _xOr = xOr;
     _or  = or;
     _and = and;
 }