Esempio n. 1
0
 public static void PaintString(Canvass c, string s, int x, int y, int objectId, ConsoleColor backgroundColor,
                                ConsoleColor foregroundColor)
 {
     for (int i = 0; i < s.Length; i++)
     {
         c.Paint(x + i, y, s[i], objectId, backgroundColor, foregroundColor);
     }
 }