x86.frmMain.check C# (CSharp) Method

check() private method

private check ( ) : void
return void
        void check()
        {

            
            while (true)
            {
                task();
                try
                {
                    functionSwitch();//开启某些功能
                    this.BeginInvoke(delegateShowOnlineStu, "", 3);
                    showTixianleiji();//累计提现金额
                    sys.LoginUser = new usersClass().getUserInfo(sys.LoginUser.ID.ToString());

                    //this.Invoke(delegateUpdateLable, this.lab_mymsg, sys.LoginUser.msg);
                    this.BeginInvoke(delegateInitView);
                }
                catch (Exception )
                {

                }
               

                Thread.Sleep(10000);
            }
        }
        private void task()
frmMain