There is a GetAsyncKeyState method. The signature of the method is as follows:
[DllImport("user32.dll")]
public static extern short GetAsyncKeyState(UInt16 virtualKeyCode);
Then you just call it passing the left mouse key code (VK_LBUTTON = 0x01) and release it.
Additional information directly from MSDN .