Upsilon/Upsilon/Text/TextSpan.cs

15 lines
297 B
C#

namespace Upsilon.Text
{
public struct TextSpan
{
public TextSpan(int start, int length)
{
Start = start;
Length = length;
}
public int Start { get; }
public int Length { get; }
public int End => Start + End;
}
}