我有一个函数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);
}
但是,对于代理的NotSupportedException was unhandled by user code
方法,我收到Specified method is not supported
消息BeginInvoke()
。出了什么问题?
我正在使用Silverlight 4.0和VS2010。
答案 0 :(得分:7)
异步Delegate.BeginInvoke不适用于Silverlight中的代理。
您应该使用BackgroundWorker instead以异步方式运行任何内容。