Inheritance: ICloneable
Example #1
0
 public WipeOptions()
 {
     _randomOptions = new RandomOptions();
 }
Example #2
0
 public object Clone()
 {
     RandomOptions temp = new RandomOptions();
     temp._poolUpdateInterval = _poolUpdateInterval;
     temp._preventWriteToSwap = _preventWriteToSwap;
     temp._randomProvider = _randomProvider;
     temp._reseed = _reseed;
     temp._reseedInterval = _reseedInterval;
     temp._useSlowPool = _useSlowPool;
     return temp;
 }