try for 1000 ms { RunPotentiallyTooLongCode(); } catch { RecordError( "code ran out of control" ); // let user know ... }
虽然我们目前正在使用4.0,但我也对4.5的解决方案感兴趣,也许添加的异步功能会有所帮助.
Thread thread = new Thread( RunPotentiallyTooLongCode ); thread.Start(); Boolean success = thread.Join( 1000 ); if( !success ) thread.Abort();
这里没有必要使用4.0异步的东西.事实上,这段代码也可以在.NET 1.0上正常运行.