The accepted answer uses keybd_event which is deprecated. The official API is now SendInput. There's also a nice wrapper for it at http://inputsimulator.codeplex.com.
None of the above, however, fully caters to the "key holding" scenario. This is due to the fact that holding a key will generate multiple WM_KEYDOWN messages, followed by a single WM_KEYUP message upon release (you can check this with Spy++).
The frequency of the WM_KEYDOWN messages is dependent on hardware, BIOS settings and a couple of Windows settings: KeyboardDelay and KeyboardSpeed. The latter are accessible from Windows Forms (SystemInformation.KeyboardDelay, SystemInformation.KeyboardSpeed).
Using the aforementioned Input Simulator library, I've implemented a key holding method which mimics the actual behavior. It's await/async ready, and supports cancellation.
static Task SimulateKeyHold(VirtualKeyCode key, int holdDurationMs,
int repeatDelayMs, int repeatRateMs, CancellationToken token)
{
var tcs = new TaskCompletionSource<object>();
var ctr = new CancellationTokenRegistration();
var startCount = Environment.TickCount;
Timer timer = null;
timer = new Timer(s =>
{
lock (timer)
{
if (Environment.TickCount - startCount <= holdDurationMs)
InputSimulator.SimulateKeyDown(key);
else if (startCount != -1)
{
startCount = -1;
timer.Dispose();
ctr.Dispose();
InputSimulator.SimulateKeyUp(key);
tcs.TrySetResult(null);
}
}
});
timer.Change(repeatDelayMs, repeatRateMs);
if (token.CanBeCanceled)
ctr = token.Register(() =>
{
timer.Dispose();
tcs.TrySetCanceled();
});
return tcs.Task;
}