Ok to the "Task List" in VS sounds pretty great. But I can t make it work. (I m using VS2010 shell, and also VS2010 proper and can t make it work in either. Language is F# if that matters)
我的代码中有这样的内容:
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 is a flag in my settings. TODO doesn t work either
有什么想法吗?