码迷,mamicode.com
首页 > 编程语言 > 详细

c#线程 传 单个参数

时间:2017-06-12 14:55:19      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:static   har   obj   public   ace   thread   index   ber   eric   

 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#线程 传 单个参数

标签:static   har   obj   public   ace   thread   index   ber   eric   

原文地址:http://www.cnblogs.com/Cpart/p/6992338.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!