System.Data.AutoIncrementInt64.BoundaryCheck C# (CSharp) Method

BoundaryCheck() private method

private BoundaryCheck ( System.Numerics.BigInteger value ) : bool
value System.Numerics.BigInteger
return bool
        private bool BoundaryCheck(BigInteger value) =>
            ((_step < 0) && (value <= _current)) || ((0 < _step) && (_current <= value));
    }