예제 #1
0
파일: Text.cs 프로젝트: h3xb0y/ByteCrusher
 public string Replace(string element)
 => Color != null || BackgroundColor != null
 ? _asciiCode
 .AddDrawing(element)
 .AddColorToAll(Color, BackgroundColor)
 .Build()
 : element;
예제 #2
0
 public string Replace(string element)
 => _asciiCode
 .AddDrawing(element)
 .AddColor("_", "55", "10", true)
 .Build();