CodepointRange Struct
Definition
Represents a range of Unicode code points, defined by inclusive start and end values.
public struct CodepointRange
Constructors
| Name | Description |
|---|---|
| CodepointRange | No summary available. |
CodepointRange Constructor
public CodepointRange(int start, int end)
Parameters
start int
end int
Methods
| Name | Description |
|---|---|
| Equals | No summary available. |
| GetHashCode | No summary available. |
Equals Method
public bool Equals(object obj)
Parameters
obj object
Returns
bool
GetHashCode Method
public int GetHashCode()
Returns
int
Fields
End Field
Gets the end of the range.
public int End
Start Field
Gets the start of the range.
public int Start