namespace System.Unicode { /// Provides information on the kind of name alias provided for a code point. public enum UnicodeNameAliasKind : byte { /// The alias is a correction of a serious problem in the original name. [ValueName("correction")] Correction = 1, /// The alias provides the ISO 6429 name for C0 and C1 control functions of a control code, or another commonly occurring name for the control code. [ValueName("control")] Control = 2, /// The alias is a widely used alternate name for a format character. [ValueName("alternate")] Alternate = 3, /// The alias is a documented non-standardized label for C1 control code points. [ValueName("figment")] Figment = 4, /// The alias is a commonly occurring abbreviation (or acronym) for control codes, format characters, spaces, and variation selectors. [ValueName("abbreviation")] Abbreviation = 5 } }