x86.frmMain.move C# (CSharp) Method

move() private method

private move ( ) : void
return void
        private void move()
        {
            while (true)
            {
                try
                {
                    // ISSUE: method pointer
                    this.BeginInvoke(movedelegate);
                    Thread.Sleep(100);
                }
                catch
                {
                }
            }
        }
frmMain