System.Range
Represent a range has start and end indexes.
namespace System
{
internal readonly struct Range : IEquatable<System.Range>
{
public System.Index Start { get; }
public System.Index End { get; }
public static System.Range All { get; }
public Range(System.Index start, System.Index end);
public bool Equals(System.Range other);
public static System.Range StartAt(System.Index start);
public static System.Range EndAt(System.Index end);
public (int Offset, int Length) GetOffsetAndLength(int length);
}
}