System.Data.AutoIncrementInt64.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));
    }