How can I send ctrl+x with Sendkeys?

c#

Solution

This should do it.

SendKeys.Send("^X")

.. but SendKeys.. yuck.. :-)

Problem

How can I send CTRL+X using `Sendkeys.Send` in C#?

Original source