Struct Range
The range use to setup the histogram
public struct Range : IEquatable<Range>
- Implements
- Inherited Members
Constructors
Range(int, int)
Create a range of the specific min/max value
public Range(int start, int end)
Parameters
Properties
All
return the full range.
public static Range All { get; }
Property Value
End
The end value of this range
public int End { get; set; }
Property Value
Start
The start value of this range
public int Start { get; set; }
Property Value
Methods
Equals(Range)
Return true if the two Range equals
public bool Equals(Range other)
Parameters
other
RangeThe other Range to compare with
Returns
- bool
True if the two Range equals