资源简介

C#多线程编程实战Code源代码 资源是从华章出版社官网下载的

资源截图

代码片段和文件信息

using System;
using System.Threading;

namespace Chapter1.Recipe1
{
class Program
{
static void Main(string[] args)
{
Thread t = new Thread(PrintNumbers);
t.Start();
PrintNumbers();
}

static void PrintNumbers()
{
Console.WriteLine(“Starting...“);
for (int i = 1; i < 10; i++)
{
Console.WriteLine(i);
}
}
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       80955  2013-09-16 12:05  BookSamples\BookSamples.sln
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe1\
     文件         376  2013-04-16 07:39  BookSamples\Chapter1\Recipe1\Program.cs
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe1\Properties\
     文件        1426  2013-04-16 07:39  BookSamples\Chapter1\Recipe1\Properties\AssemblyInfo.cs
     文件        2507  2013-04-16 07:39  BookSamples\Chapter1\Recipe1\Recipe1.csproj
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe10\
     文件        1147  2013-04-16 07:39  BookSamples\Chapter1\Recipe10\Program.cs
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe10\Properties\
     文件        1428  2013-04-16 07:39  BookSamples\Chapter1\Recipe10\Properties\AssemblyInfo.cs
     文件        2509  2013-04-16 07:39  BookSamples\Chapter1\Recipe10\Recipe10.csproj
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe11\
     文件         846  2013-09-24 11:49  BookSamples\Chapter1\Recipe11\Program.cs
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe11\Properties\
     文件        1428  2013-04-16 07:39  BookSamples\Chapter1\Recipe11\Properties\AssemblyInfo.cs
     文件        2509  2013-04-16 07:39  BookSamples\Chapter1\Recipe11\Recipe11.csproj
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe2\
     文件         590  2013-04-16 07:39  BookSamples\Chapter1\Recipe2\Program.cs
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe2\Properties\
     文件        1426  2013-04-16 07:39  BookSamples\Chapter1\Recipe2\Properties\AssemblyInfo.cs
     文件        2507  2013-04-16 07:39  BookSamples\Chapter1\Recipe2\Recipe2.csproj
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe3\
     文件         521  2013-04-16 07:39  BookSamples\Chapter1\Recipe3\Program.cs
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe3\Properties\
     文件        1426  2013-04-16 07:39  BookSamples\Chapter1\Recipe3\Properties\AssemblyInfo.cs
     文件        2507  2013-04-16 07:39  BookSamples\Chapter1\Recipe3\Recipe3.csproj
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe4\
     文件         574  2013-04-16 07:39  BookSamples\Chapter1\Recipe4\Program.cs
     目录           0  2013-11-20 10:53  BookSamples\Chapter1\Recipe4\Properties\
     文件        1426  2013-04-16 07:39  BookSamples\Chapter1\Recipe4\Properties\AssemblyInfo.cs
............此处省略378个文件信息

评论

共有 条评论