Ejemplo n.º 1
0
            public static void WriteLine()
            {
                List <TextData> arglist = new List <TextData>();

                arglist.Add(new TextData.NextLine());
                LowConsole.Write(arglist);
            }
Ejemplo n.º 2
0
            public static void WriteLine(string str)
            {
                List <TextData> arglist = Sepreate(str);

                arglist.Add(new TextData.NextLine());
                LowConsole.Write(arglist);
            }
Ejemplo n.º 3
0
 public static void Clear(string tag)
 {
     LowConsole.Clear((arg) =>
     {
         if (arg.arg.tags.Contains(tag))
         {
             return(true);
         }
         else
         {
             return(false);
         }
     });
 }
Ejemplo n.º 4
0
 public static void Clear()
 {
     LowConsole.Clear();
 }
Ejemplo n.º 5
0
 public static void Write(string str)
 {
     LowConsole.Write(Sepreate(str));
 }
Ejemplo n.º 6
0
 public void PrintLine()
 {
     this.AppendLine();
     LowConsole.Write(datalist);
 }
Ejemplo n.º 7
0
 public void Print()
 {
     LowConsole.Write(datalist);
 }