我的控制器类中有一个函数 - 即使用xml格式文件
之类的东西public URI convertXML(Uri pathToFile)
{
// conversion goes here
}
我想将其作为
运行[STAThread]
public URI convertXML(Uri pathToFile)
{
// conversion goes here
}
类似
public ActionResult DoTheThingsRight()
{
//...
var resultingURI = [as STAThread] convertXML(filePath);
}
我找到How to run something in the STA thread?
但我不明白这个样本中的GetFooFromAsyncResult
是什么,所以
也许有另一种简单的方法可以做到这一点?