c#线程 传 单个参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#线程 传 单个参数相关的知识,希望对你有一定的参考价值。
1.定义线程启动的函数,如
private
static
void
fun(
object
obj)
{
Console.WriteLine(
"Hello, {0}!"
,obj.ToString ());
}
2.引用所需的动态库,如下
using
System;
using
System.Collections.Generic;
using
System.Text;
using
System.Threading;
3.主函数进行调用:
public
static
void
Main()
{
Thread t =
new
Thread(
new
ParameterizedThreadStart(fun));
t.Start(
"lilei"
);
Console.ReadLine();
}
以上是关于c#线程 传 单个参数的主要内容,如果未能解决你的问题,请参考以下文章