C# 多线程传递多个参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 多线程传递多个参数相关的知识,希望对你有一定的参考价值。

http://www.cnblogs.com/lvdongjie/p/5416883.html

3. 方式三:采用lambda表达式

对于lambda表达式不熟悉的可以查看微软MSDN上的说明文档。此处假设你熟悉。因为在大多数使用委托的时候我们一般也可以用lambda表达式的。

 View Code
using System;
 using System.Threading;
  
 namespace ThreadWithParameters
 {
     class Program
     {
         static void Main(string[] args)
         {
             string hello = "hello world";
  
             //如果写成Thread thread = new Thread(ThreadMainWithParameters(hello));这种形式,编译时就会报错
             Thread thread = new Thread(() => ThreadMainWithParameters(hello));
             thread.Start();
  
             Console.Read();
         }
  
         static void ThreadMainWithParameters(string str)
         {
              Console.WriteLine("Running in a thread,received: {0}", str);
         }
     }
 }


以上是关于C# 多线程传递多个参数的主要内容,如果未能解决你的问题,请参考以下文章

C# 中怎么使用带参数的多线程呢

C#多线程处理多个队列数据的方法

c#使用多线程的几种方式示例详解

在C#中使用线程,线程的方法函数中需要带一个数组的参数传递进去

C#线程调用方法时,怎么传参数过去

C#,Process.Start() 传递多参数问题。