示例#1
0
        void ActionCallBack(IAsyncResult rs)
        {
            dlg_ActionWork hd = (dlg_ActionWork)rs.AsyncState;

            hd.EndInvoke(rs);
        }
示例#2
0
 void AsyncActionWork(dlg_ActionWork hd)
 {
     hd.BeginInvoke(ActionCallBack, hd);
 }