Cal*_*ers 4 .net c# silverlight multithreading delegates
我有一个函数Run(string, string[]),我想在一个单独的线程上运行,所以我使用委托和BeginInvoke:
private Func<string, string[], Stack<StackItem>> runner;
public MainPage()
{
runner = Run;
}
private void btnStep_Click(object sender, RoutedEventArgs e)
{
// snip
runner.BeginInvoke(tbCode.Text, GetArgs(), null, null); // Exception here
// snip
}
private Stack<StackItem> Run(string program, string[] args)
{
return interpreter.InterpretArgs(parser.Parse(lexer.Analyse(program)), args);
}
Run Code Online (Sandbox Code Playgroud)
不过,我得到一个NotSupportedException was unhandled by user code与消息Specified method is not supported为BeginInvoke()委托的方法.出了什么问题?
我正在使用Silverlight 4.0和VS2010.
异步Delegate.BeginInvoke不适用于Silverlight中的代理.
您应该使用BackgroundWorker来异步运行任何内容.
| 归档时间: |
|
| 查看次数: |
2549 次 |
| 最近记录: |