How to realize sound effects in console-based effect for each char. in example: Ace Attorney dialogues I have a loop that slowly prints chars
static void PrintSlow(string str)
{
foreach (char c in str)
{
Console.Write(c);
Thread.Sleep(10);
}
}
I've tried to change Console.Write("\a" + c);
but it's not worked.
P.S I can accept answers in Russian