Example #1
0
    public IntCryptoCachedWrapper Assign(int value)
    {
        latest = new IntCryptoWrapper(value);

        return(this);
    }
Example #2
0
 public IntCryptoCachedWrapper(IntCryptoCachedWrapper value)
 {
     cached = new IntCryptoWrapper(value.Value);
     latest = new IntCryptoWrapper(value.Value);
 }