Struct Int64Range
Represents a range over long values.
public readonly struct Int64Range
- Inherited Members
Constructors
Int64Range(string, long, bool, long, bool)
public Int64Range(string label, long min, bool minInclusive, long max, bool maxInclusive)
Parameters
Properties
Label
Label that identifies this range.
public string Label { get; }
Property Value
Max
Maximum.
public long Max { get; }
Property Value
MaxInclusive
True if the maximum value is inclusive.
public bool MaxInclusive { get; }
Property Value
Min
Minimum.
public long Min { get; }
Property Value
MinInclusive
True if the minimum value is inclusive.
public bool MinInclusive { get; }