问题描述
|
好的,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,if it happens should wait for cancelation to happen then to hand over
//startThread \"run\" <|
this.RunExp () //Get to work
UNDONE是我设置中的一个标志。
Todo也不起作用
有任何想法吗?
解决方法
我可以在VS2010中以及在fs项目中的fs文件中确认这一点不起作用。
Brian或Tomas可以给出一个明确的答案,但是我怀疑这是他们还没有在F#/ VS工具集中进行编码的事情之一。
,任务列表仅包含项目中文件的项目(将源文件放在解决方案文件夹中无效)。
在VS2010专业版C#中进行了测试。