'Declaration Public Function New( _ ByVal lowerBound As Integer, _ ByVal isLowerBoundInclusive As Boolean, _ ByVal upperBound As Integer, _ ByVal isUpperBoundInclusive As Boolean _ )
public PgSqlIntRange( int lowerBound, bool isLowerBoundInclusive, int upperBound, bool isUpperBoundInclusive )
Parameters
- lowerBound
- Lower bound.
- isLowerBoundInclusive
- If true, the lower bound of the range will be inclusive. If false, it is exclusive.
- upperBound
- Upper bound.
- isUpperBoundInclusive
- If true, the upper bound of the range will be inclusive. If false, it is exclusive.