Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Simulate typing in vs code

i need help trying to implement

public static async Task Type(string message)

{

Random rnd = new Random();


foreach (var character in message)

{

Console.Write(character);

await Task.Delay(rnd.Next(50, 200));

}

}

into my code

e

Sign In or Register to comment.