程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#中簡單實現多線程

C#中簡單實現多線程

編輯:關於C語言

感覺用C#進行開發就是快

using System;
using System.Threading;

namespace ConsoleApplication1
{
 /// <summary>
 /// Class1 的摘要說明。
 /// </summary>
 class Class1
 {
  /// <summary>
  /// 應用程序的主入口點。
  /// </summary>
  [STAThread]
  static void Main(string[] args)
  {
   //
   // TODO: 在此處添加代碼以啟動應用程序
   //
   Thread thread1 = new Thread(new ThreadStart(Method1));
   Thread thread2 = new Thread(new ThreadStart(Method2));
   thread1.Start();
   thread2.Start();
  
  }
  public static void Method1()
  {
   while(true)
   {
    Console.WriteLine("this is thread : 1");
    Thread.Sleep(1000);

   }
  
  }
  public static void Method2()
  {
   while (true)
   {
    Console.WriteLine("this is thread : 2");
    Thread.Sleep(1520);
   }
  

  }
 }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved