我在线程内设置引用变量时遇到问题。
错误:
“不能在匿名方法、lambda 表达式或查询表达式中使用 ref 或 out 参数‘输出’”
有没有办法让它工作或达到类似的效果?
public static void LoadThreaded<T>(string path, ref T output)
{
ThreadStart threadStart = delegate
{
output = Loader<T>(path);
};
new Thread(threadStart).Start();
}