gpt4 book ai didi

c# - WorkingThread 未启动

转载 作者:行者123 更新时间:2023-11-30 14:26:14 26 4
gpt4 key购买 nike

我有一个 C# 理解问题。以下代码:

this.workingThread = new Thread(new ParameterizedThreadStart(this.WorkingThreadFunction));

肯定被调用了,但不知何故我没有进入那个函数:

private void WorkingThreadFunction(object args) {}

最佳答案

您需要调用Start在你的线程上让它真正开始。

this.workingThread = new Thread(new ParameterizedThreadStart(this.WorkingThreadFunction));
this.workingThread.Start();

关于c# - WorkingThread 未启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35937556/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com