Ejemplo n.º 1
0
 public string Replace(string element)
 => Color != null || BackgroundColor != null
 ? _asciiCode
 .AddDrawing(element)
 .AddColorToAll(Color, BackgroundColor)
 .Build()
 : element;
Ejemplo n.º 2
0
 public string Replace(string element)
 => _asciiCode
 .AddDrawing(element)
 .AddColor("_", "55", "10", true)
 .Build();