• 大小: 0.48KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 多线程  线程  C#  

资源简介

C#初学者,多线程入门例子

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace 线程练习
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(“开始一个新的线程“);
            Thread t = new Thread(new ThreadStart(ThreadProc));
            t.Start();
            for (int i = 0; i < 4; i++)
            {
                Console.WriteLine(“主线程:“ + i

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        920  2014-04-01 21:58  Program.cs

----------- ---------  ---------- -----  ----

                  920                    1


评论

共有 条评论