C#C
C#3y ago
Noah Here

Slow writing text affect problems

trying to make a cool slow writing text affect on my console program taking some stuff from this guy https://www.youtube.com/watch?v=BnExQ7JaY1c but it write every letter individually line by line instead of just one line
if (i == 49)
                {
                    Console.Clear();
                    Print("testing 123 just checking", 70);
                }
            }
            Console.ReadLine();
            
        }
        public static void Print(string text, int speed = 40)
        {
            foreach (char c in text)
            {
                Console.WriteLine(c);
                System.Threading.Thread.Sleep(speed);
            }
            
        }

I'm also dogwater at C#
Was this page helpful?