[]
Specifies an interval of UTF-32 characters (code points).
public struct Utf32Interval
Initializes an instance of the Utf32Interval.
public Utf32Interval(int firstCode, int lastCode, bool exclude)
firstCode
intThe first UTF-32 character (code point) of the interval.
lastCode
intThe last UTF-32 character (code point) of the interval.
exclude
boolIndicates if the interval should be excluded from the resulting set of characters.
Initializes an instance of the Utf32Interval.
public Utf32Interval(int firstCode, int lastCode)
firstCode
intThe first UTF-32 character (code point) of the interval.
lastCode
intThe last UTF-32 character (code point) of the interval.
Gets a value indicating if the interval should be excluded from the resulting set of characters.
public bool Exclude { get; }
Gets the first UTF-32 character (code point) of the interval.
public int FirstCode { get; }
Gets the last UTF-32 character (code point) of the interval.
public int LastCode { get; }
Gets the value identifying the named range of Unicode characters.
public UnicodeBlock UnicodeBlock { get; }