因为我不太懂 C#,只是临时做一个小工具要用一下。大佬勿喷
我使用一个定时器,然后在定时器里发送 post 请求,请求了 8 次,被 GC 回收了。。。
然后期望的业务功能没实现。
应该怎样禁止 GC 回收定时器,然后又不会导致程序崩溃?
Timer threadTimer = new System.Threading.Timer ( new System.Threading.TimerCallback ( ThreadMethod ),null, -1, -1 );
1
secondwtq 2019-08-03 22:08:12 +08:00
你把这个实例放到窗体类里面呢
还是说现在已经在里面了 ... 毕竟楼里面好像没有说这是函数里面的 |
2
Magentaize 2019-08-03 22:39:52 +08:00 via iPhone
Observable.Timer
|
3
yejinmo 2019-08-03 22:54:16 +08:00
|
5
miao666 OP @Magentaize 谢谢,我试试
|