Can someone help me convert the following Java code to C #.
Robot robot = new Robot(); robot.keyPress(KeyEvent.VK_WINDOWS); robot.keyPress(KeyEvent.VK_M); robot.keyRelease(KeyEvent.VK_WINDOWS); robot.keyRelease(KeyEvent.VK_M);
I realized that we should use 'user32.dll'. But I'm not sure what methods we should name.
Naresh
source share