System.Data.AutoIncrementBigInteger.BoundaryCheck C# (CSharp) Метод

BoundaryCheck() приватный Метод

private BoundaryCheck ( System.Numerics.BigInteger value ) : bool
value System.Numerics.BigInteger
Результат bool
        private bool BoundaryCheck(BigInteger value) =>
           ((_step < 0) && (value <= _current)) || ((0 < _step) && (_current <= value));
    }