我最近在尝试运行 Node 函数时遇到了一些问题,当尝试运行下面的代码时,我的程序只是冻结了。
{
class Interpreter
{
public static async Task NodeFunc()
{
var func = Edge.Func(@"
return function (data, callback) {
callback(null, 'Node.js welcomes ' + data);
}
");
Console.WriteLine(await func(".NET"));
}
public static void chamar()
{
NodeFunc().Wait();
}
}
}
我已经确认程序仅在执行 await 时冻结,所以这是问题的根源,我可能无限地“等待”。
我在调试控制台中收到的唯一内容如下:
The thread 0x41f8 has exited with code 0 (0x0).
The thread 0x52a0 has exited with code 0 (0x0).
我不知道这是什么意思,有什么帮助吗?