Example #1
0
 public void Visit(SetColorMessagePart part)
 {
     _colors.Push(Console.ForegroundColor);
     Console.ForegroundColor = part.Color;
 }
Example #2
0
 protected bool Equals(SetColorMessagePart other)
 {
     return(Color == other.Color);
 }