コード例 #1
0
 public static void ConsoleGreen(this string text)
 {
     text.ColoredWriteLine(ConsoleColor.Green);
 }
コード例 #2
0
 public static void ConsoleYellow(this string text)
 {
     text.ColoredWriteLine(ConsoleColor.Yellow);
 }
コード例 #3
0
 public static void ConsoleBlue(this string text)
 {
     text.ColoredWriteLine(ConsoleColor.Blue);
 }
コード例 #4
0
 public static void ConsoleRed(this string text)
 {
     text.ColoredWriteLine(ConsoleColor.Red);
 }