Example #1
0
 public static RichString DarkBlue(this string value) => StringStaticMethods.ColorString(value, ConsoleColor.DarkBlue);
Example #2
0
 public static RichString White(this string value) => StringStaticMethods.ColorString(value, ConsoleColor.White);
Example #3
0
 public static RichString Black(this string value) => StringStaticMethods.ColorString(value, ConsoleColor.Black);
Example #4
0
 public static RichString Yellow(this string value) => StringStaticMethods.ColorString(value, ConsoleColor.Yellow);
Example #5
0
 public static RichString Magenta(this string value) => StringStaticMethods.ColorString(value, ConsoleColor.Magenta);
Example #6
0
 public static RichString Red(this string value) => StringStaticMethods.ColorString(value, ConsoleColor.Red);
Example #7
0
 public static RichString Cyan(this string value) => StringStaticMethods.ColorString(value, ConsoleColor.Cyan);
Example #8
0
 public static RichString Gray(this string value) => StringStaticMethods.ColorString(value, ConsoleColor.Gray);