Table of Contents

Struct ParseRange

Namespace
NMF.AnyText
Assembly
NMF.AnyText.Core.dll

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 ParsePosition

The start of the range

End ParsePosition

The end of the range

Properties

End

The end of the range

public ParsePosition End { readonly get; set; }

Property Value

ParsePosition

Start

The start of the range

public ParsePosition Start { readonly get; set; }

Property Value

ParsePosition