Exemple #1
0
 static public void Write(string str)
 {
     if (debugmode)
     {
         Színes.Write(str);
     }
 }
Exemple #2
0
        public static void Write(string s)
        {
            int i = s.IndexOf('[');
            int j = s.IndexOf(']');
            int l = s.IndexOf('}');

            if (i == -1 || j == -1 || l == -1)
            {
                Console.Write(s);
            }
            else
            {
                if (i > 0)
                {
                    Console.Write(s.Substring(0, i));
                }
                Színtvált(s.Substring(i + 1, j - i - 1
                                      ));
                Console.Write(s.Substring(j + 2, l - j
                                          - 2
                                          ));
                Színtvált("white");
                if (l < s.Length - 1)
                {
                    Színes.Write(s.Substring(l + 1));
                }
            }
        }
Exemple #3
0
 static public void Write(Nyom nyom, string str)
 {
     if (debugmode)
     {
         Színes.Write($"{nyom.szöveg} {str}");
     }
 }