I am trying to make this sentence print out one letter at a time, but I am unsure of how to do it. I did try looking at Thread.Sleep, but it didn't really work out for me.
string Streamer = "Who is your favorite streamer?";
char[] charSentence3 = Streamer.ToCharArray();
Array.Reverse(charSentence3);
foreach(char Streamerchar in charSentence3)
{
Console.WriteLine(Streamerchar);
}
Console.ReadLine();
Basically, I just want to make the sentence "Who is your favorite streamer" print out one letter at a time.