--1C题目What lines of code, at the location (CODE HERE) above, call DoAction asynchronously and then block until it was finished? 叫你异步调用DoAction,但没叫你调用ActionCallback,所以1E不是很对
--2B是对的--3C因为你必须在BeginInvoke里传入最后一个参数,才能在ActionCallback里得到这个参数
但这个题目有点问题,因为如果whTest.WaitOne() 是在 DoAction完成后触发的,如果在whTest.WaitOne()马上退出的话,ActionCallback也许不会被执行--4D好像跟第三题没区别啊,是我眼花了么?--5B是对的