Exemple #1
0
 public static ColoredMessage ClearConsoleLine(ColoredMessage message)
 {
     ClearConsoleLine(message?.text);
     return(message);
 }
 public bool Equals(ColoredMessage other)
 {
     return(string.Equals(text, other.text) && textColor == other.textColor && backgroundColor == other.backgroundColor);
 }