Пример #1
0
 public ChatMessage(string text, ChatColor color, ChatFormat format) : this(text, format)
 {
     this.Color = color.ToString();
 }
Пример #2
0
 public ChatMessage(ReadOnlySpan <char> text, ChatColor color, ChatFormat format) : this(text.ToString(), color, format)
 {
 }
Пример #3
0
 public ChatMessage(string text, ChatColor color) : this(text) { this.Color = color.ToString(); }
Пример #4
0
 public ChatMessage(ReadOnlySpan <char> text, ChatColor color) : this(text.ToString(), color)
 {
 }