예제 #1
0
파일: RCL.cs 프로젝트: IQEX/pmat-rc-core
 public static string Wrap(string text, ConsoleColor color) => $"{color.getValue()}{text}{ConsoleColor.White.getValue()}";
예제 #2
0
파일: RCL.cs 프로젝트: IQEX/pmat-rc-core
 public static string Map(this string e, List <string> t, ConsoleColor c) => e.Map(t.ToArray(), c.getValue());
예제 #3
0
파일: RCL.cs 프로젝트: IQEX/pmat-rc-core
 public static string Map(this string e, object t, ConsoleColor c) => e.Map(t, c.getValue());
예제 #4
0
 public static string Wrap(string text, ConsoleColor color)
     => $"{color.getValue()}{text}{ConsoleColor.White.getValue()}";