如何在 C# 中将变量传递到线程中?
在我的代码中,我正在运行一个线程。我现在需要做的是将变量传递给“SayHello”方法。由于它在单独的线程中调用,因此我的变量对该线程不可见。
ThreadStart ts = new ThreadStart(SayHello);
mThread = new Thread(ts);
mThread.Start();
我是 C# 新手,请让我知道如何执行此操作。
In my code im running a thread. What I need to do now is to pass a variable to "SayHello" method. Since it is calling in a separate thread my variables are not visible for the thread.
ThreadStart ts = new ThreadStart(SayHello);
mThread = new Thread(ts);
mThread.Start();
Im new to C# and please let me know how to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我传递价值观的方式。首先,您的参数必须是一个对象,因此您需要在方法中进行强制转换。你的方法必须返回void,如果你需要返回值,你可以通过多种方式来实现,易失性变量,或者线程通信等。 然后:
并且在你的方法中:
如果你需要传递多个变量,那么创建一个class 并将您的值分配给属性,并在您的方法中进行转换,但还有其他方法可以对此进行归档。希望这有帮助。如果您需要更多信息,请检查此
链接: C# 中的线程
祝你好运!
this is how I pass values. First, your parameter must be a object, so you need to cast in your method. Your method must return void, if you need to return values, you can do it in many ways, volatile variables, or thread communication, etc. Then:
And in your method:
If you need to pass more than one variable, then create a class and assign your values to properties, and cast in your method, but there are other ways to archive this. Hope this helps. If you need more info, chech this
link: Threading in C#
Good luck!
你只能穿过一个物体。
You can only pass through an object.