コード例 #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)
 {
 }