好的,VS中的“任务列表”听起来很棒。但我不能让它工作。(我正在使用 VS2010 shell,以及 VS2010 正确的,并且不能使其在任何一个中工作。如果重要的话,语言是 F#)
我的代码中有这样的东西:
let expStatus = ref AwaitingResult
member takecontrol () =
assert (!expStatus<>NoneSubmitted); //UNDONE: This might be possible, and indeed legal, if it happens should wait for cancelation to happen then to hand over
assert (!expStatus<>BeingWorkedOn); //UNDONE: This might be possible, and indeed legal, if it happens should wait for cancelation to happen then to hand over
//startThread "run" <|
this.RunExp () //Get to work
UNDONE 是我设置中的标志。TODO 也不起作用
有任何想法吗?