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