本文介绍C#线程传参的方法。
目录
一、委托
2、 lambda表达式
3、 自定义类
4、 多参数传递
4.1、 将参数作为数组或者集合传入
4.2、自定义类传递多参数
一、委托
使用线程自带的委托传参,示例如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;namespace 多线程传参
{class Program{static void Main(string[] args){string str = "Hello";Thread th = new Thread(OnThread);th.Start(str);Console.Read();}static void OnThread(object o){string