Exemplo n.º 1
0
            public override void VisitSetColorCommand(SetColorCommand setColorCommand)
            {
                string index = BinaryUtils.BytesToHexString(setColorCommand.ColorIndex.Bytes);

                _writer.Write($"[color index=\"{index}\"]");
            }
Exemplo n.º 2
0
 public override void VisitSetColorCommand(SetColorCommand setColorCommand)
 {
     Append(StringSegmentCodes.SetColor);
     Append(setColorCommand.ColorIndex.Bytes);
 }