Binarysharp.MemoryManagement.Windows.Mouse.BaseMouse.DoubleClickLeft C# (CSharp) Method

DoubleClickLeft() public method

Double clicks the left button of the mouse at the current cursor position.
public DoubleClickLeft ( ) : void
return void
        public void DoubleClickLeft()
        {
            ClickLeft();
            Thread.Sleep(10);
            ClickLeft();
        }