I want to write in the chat games WORLD of Warcraft Russian characters. Well here's the rub angliskie true test letter writing code and not Russian
Here is the code
[DllImport("user32.dll")]
internal static extern int SendMessage(int hWnd, uint Msg, uint wParam, long lParam);
const uint WM_CHAR = 0x0102;
public static void SendText(String Text)
{
foreach (char c in Text)
SendMessage((int)Config.Id, WM_CHAR, (uint)c, 0);
}