How to send hotkeys (tab) several times, (spacebar)

If you want to repeat keystroke string multiple times, this might be useful:

String.Join("", Enumerable.Repeat("[d(alt)] [u(alt)]",20))

So that will repeat the string 20 times in the TypeInto.

36 Likes