System.Text.Unicode.UnicodeRange
Represents a contiguous range of Unicode code points.
namespace System.Text.Unicode
{
public sealed class UnicodeRange
{
public int FirstCodePoint { get; }
public int Length { get; }
public UnicodeRange(int firstCodePoint, int length);
public static UnicodeRange Create(char firstCharacter, char lastCharacter);
}
}