Noah Here
Noah Here
CC#
Created by Noah Here on 11/26/2023 in #help
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);
}

}
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#
3 replies
CC#
Created by Noah Here on 10/25/2023 in #help
❔ How can I make a Console app with cool text that when displayed slowly writes whatever
I'm trying to make a little story console app and I want to make the wording so that when you want to continue you hit enter then it displays the letter one by one in quick succession as if to type fast.
60 replies