using System; namespace FastColoredTextBoxNS { /// /// Char and style /// public struct Char { /// /// Unicode character /// public char c; /// /// Style bit mask /// /// Bit 1 in position n means that this char will rendering by FastColoredTextBox.Styles[n] public StyleIndex style; public Char(char c) { this.c = c; style = StyleIndex.None; } } }