Exemple #1
0
 public static void DrawStringInPoint(MPoint where, CColor c, String S)
 {
     SetCursor(where.x, where.y);
     c.Apply();
     Console.Write(S);
 }
Exemple #2
0
 public static void DrawStringInPoint(MPoint where, CColor c, String S, int maxSymbols)
 {
     SetCursor(where.x, where.y);
     c.Apply();
     Console.Write(Short(S, maxSymbols));
 }
Exemple #3
0
 public static void DrawStringInPoint(int x, int y, CColor c, String S)
 {
     SetCursor(x, y);
     c.Apply();
     Console.Write(S);
 }