Struct ParseRange
Denotes a range between two parse positions
public record struct ParseRange : IEquatable<ParseRange>
- Implements
- Inherited Members
Constructors
ParseRange(ParsePosition, ParsePosition)
Denotes a range between two parse positions
public ParseRange(ParsePosition Start, ParsePosition End)
Parameters
Start
ParsePositionThe start of the range
End
ParsePositionThe end of the range
Properties
End
The end of the range
public ParsePosition End { readonly get; set; }
Property Value
Start
The start of the range
public ParsePosition Start { readonly get; set; }