コード例 #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
ファイル: Terminal.cs プロジェクト: AnotherAltr/Rc.Core
 public static string Wrap(string text, ConsoleColor color)
     => $"{color.getValue()}{text}{ConsoleColor.White.getValue()}";