コード例 #1
0
ファイル: ConsoleUtils.cs プロジェクト: JasKill/MultiAdmin
 public static ColoredMessage ClearConsoleLine(ColoredMessage message)
 {
     ClearConsoleLine(message?.text);
     return(message);
 }
コード例 #2
0
 public bool Equals(ColoredMessage other)
 {
     return(string.Equals(text, other.text) && textColor == other.textColor && backgroundColor == other.backgroundColor);
 }