Exemplo n.º 1
0
 private void PrintUpdatedItem(object item, string propertyUpdatedName)
 {
     CliPrinter.WriteLine(ConsoleColor.Blue, $"Updated {propertyUpdatedName} for: {item}");
 }
Exemplo n.º 2
0
 public static void Error(string text) => CliPrinter.WriteLine(ConsoleColor.Red, $"ERROR: {text}");
Exemplo n.º 3
0
 private void PrintDetectedItem(object item)
 {
     CliPrinter.WriteLine(ConsoleColor.Blue, $"Found: {item}");
 }
Exemplo n.º 4
0
 public static void Info(string text) => CliPrinter.WriteLine(ConsoleColor.Green, $"[+] {text}");