Class Range<T>
Represents a range of type T.
Inheritance
System.Object
Range<T>
Namespace: Edgar.GraphBasedGenerator.Grid2D.Drawing
Assembly: Edgar.dll
Syntax
public class Range<T> : Object where T : IComparable<T>
Type Parameters
| Name | Description |
|---|---|
| T |
Constructors
Range(T, T)
Declaration
public Range(T minimum, T maximum)
Parameters
| Type | Name | Description |
|---|---|---|
| T | minimum | |
| T | maximum |
Properties
Maximum
Maximum of the range. Inclusive.
Declaration
public T Maximum { get; }
Property Value
| Type | Description |
|---|---|
| T |
Minimum
Minimum of the range. Inclusive.
Declaration
public T Minimum { get; }
Property Value
| Type | Description |
|---|---|
| T |