Esempio n. 1
0
 Xor3IsUnderInterest(IReadOnlyList <ISymbol> ctors)
 {
     _innerXor = new MoreThanOneCtorWithAtribute(ctors);
 }
Esempio n. 2
0
 public Xor3IsUnderInterest(ISymbol ctorSymbol)
 {
     _innerXor = new ExactlyOneCtorWithAttribute(ctorSymbol);
 }
Esempio n. 3
0
 Xor3IsUnderInterest(NoneCtorWithAttribute noneCtorWithAttribute)
 {
     _innerXor = noneCtorWithAttribute;
 }
Esempio n. 4
0
 public NegativeOrZeroInt32(int value)
 {
     _AssertNumber.IsNegativeOrZero(value);
     _xor3 = _CreateXor3.FromValue(value);
 }