/// <summary>
 /// Appends the start white text control character (0x00) to the message, and writes the specified text.
 /// </summary>
 /// <param name="this">this message builder</param>
 /// <param name="text"></param>
 /// <returns></returns>
 public static MessageEntryBuilder.MessageBuilder TextColor(this MessageEntryBuilder.MessageBuilder @this, char color, string text) => @this.TextColor(color, () => @this.Text(text));