You have to use SendKeys, I can show you how to use
here is an example: SendKeys.Send('A');
but you can use it with your character: SendKeys.Send(CHARACTER HERE);
what happens if we have a string variable you won’t get anything
If this happens, use it as follows:
string letter = "exampleletter"; foreach (char ch in letter) SendKeys.Send(ch.ToString());
Hope this works for you.
Yogibear
source share