Represents text as a sequence of UTF-8 code units.
Namespace
xtd
Library
xtd.core
Remarks
A string is a sequential collection of characters that's used to represent text. A xtd::u8string object is a sequential collection of xtd::char8 that represent a string; a xtd::char8 corresponds to a UTF-8 code unit. The value of the xtd::u8string object is the content of the sequential collection of xtd::char8, and unlike std::basic_string<char8_t> that value is immutable (that is, it is read-only).