在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → Visual C#.NET程序设计(源代码) 李兰友 杨晓光

Visual C#.NET程序设计(源代码) 李兰友 杨晓光

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:5.28M
  • 下载次数:11
  • 浏览次数:38
  • 发布时间:2023-06-04
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 相关标签: .NET 程序设计 源代码 NET C#

实例介绍

【实例简介】Visual C#.NET程序设计(源代码) 李兰友 杨晓光
内容包括:Visual C#.NET集成环境,常用Windows窗体控件,工程界面设计,C#.NET程序设计基础,图形、图像处理、数据库应用、Web应用及应用程序设计实践等。在完成本书的学习和实践后,学生可以在C#的应用程序开发技能方面...

【实例截图】

from clipboard

【核心代码】
文件清单
├── 《Visual C#.NET程序设计》作者杨晓光—源代码
│   ├── ch01
│   │   ├── Picture
│   │   │   ├── Picture
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Picture.exe
│   │   │   │   │       └── Picture.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── IN00357_.WMF
│   │   │   │   ├── Picture.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── Picture.sln
│   │   │   └── Picture.suo
│   │   └── WelcomeConsole
│   │       ├── WelcomeConsole
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── WelcomeConsole.exe
│   │       │   │       └── WelcomeConsole.vshost.exe
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   └── WelcomeConsole.csproj
│   │       ├── WelcomeConsole.sln
│   │       └── WelcomeConsole.suo
│   ├── ch02
│   │   ├── 2-01
│   │   │   ├── 2-01
│   │   │   │   ├── 2-01.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-01.exe
│   │   │   │   │       └── 2-01.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-01.sln
│   │   │   └── 2-01.suo
│   │   ├── 2-02
│   │   │   ├── 2-02
│   │   │   │   ├── 2-02.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-02.exe
│   │   │   │   │       └── 2-02.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-02.sln
│   │   │   └── 2-02.suo
│   │   ├── 2-03
│   │   │   ├── 2-03
│   │   │   │   ├── 2-03.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-03.exe
│   │   │   │   │       └── 2-03.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-03.sln
│   │   │   └── 2-03.suo
│   │   ├── 2-04
│   │   │   ├── 2-04
│   │   │   │   ├── 2-04.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-04.exe
│   │   │   │   │       └── 2-04.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-04.sln
│   │   │   └── 2-04.suo
│   │   ├── 2-05
│   │   │   ├── 2-05
│   │   │   │   ├── 2-05.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-05.exe
│   │   │   │   │       └── 2-05.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-05.sln
│   │   │   └── 2-05.suo
│   │   ├── 2-06
│   │   │   ├── 2-06
│   │   │   │   ├── 2-06.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-06.exe
│   │   │   │   │       └── 2-06.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-06.sln
│   │   │   └── 2-06.suo
│   │   ├── 2-07
│   │   │   ├── 2-07
│   │   │   │   ├── 2-07.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-07.exe
│   │   │   │   │       └── 2-07.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-07.sln
│   │   │   └── 2-07.suo
│   │   ├── 2-08
│   │   │   ├── 2-08
│   │   │   │   ├── 2-08.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-08.exe
│   │   │   │   │       └── 2-08.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-08.sln
│   │   │   └── 2-08.suo
│   │   ├── 2-09
│   │   │   ├── 2-09
│   │   │   │   ├── 2-09.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-09.exe
│   │   │   │   │       └── 2-09.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-09.sln
│   │   │   └── 2-09.suo
│   │   ├── 2-10
│   │   │   ├── 2-10
│   │   │   │   ├── 2-10.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-10.exe
│   │   │   │   │       └── 2-10.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-10.sln
│   │   │   └── 2-10.suo
│   │   ├── 2-11
│   │   │   ├── 2-11
│   │   │   │   ├── 2-11.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-11.exe
│   │   │   │   │       └── 2-11.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-11.sln
│   │   │   └── 2-11.suo
│   │   ├── 2-12
│   │   │   ├── 2-12
│   │   │   │   ├── 2-12.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-12.exe
│   │   │   │   │       └── 2-12.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-12.sln
│   │   │   └── 2-12.suo
│   │   ├── 2-13
│   │   │   ├── 2-13
│   │   │   │   ├── 2-13.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-13.exe
│   │   │   │   │       └── 2-13.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-13.sln
│   │   │   └── 2-13.suo
│   │   ├── 2-14
│   │   │   ├── 2-14
│   │   │   │   ├── 2-14.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-14.exe
│   │   │   │   │       └── 2-14.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-14.sln
│   │   │   └── 2-14.suo
│   │   ├── 2-15
│   │   │   ├── 2-15
│   │   │   │   ├── 2-15.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-15.exe
│   │   │   │   │       └── 2-15.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-15.sln
│   │   │   └── 2-15.suo
│   │   ├── 2-16
│   │   │   ├── 2-16
│   │   │   │   ├── 2-16.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-16.exe
│   │   │   │   │       └── 2-16.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-16.sln
│   │   │   └── 2-16.suo
│   │   ├── 2-17
│   │   │   ├── 2-17
│   │   │   │   ├── 2-17.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-17.exe
│   │   │   │   │       └── 2-17.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-17.sln
│   │   │   └── 2-17.suo
│   │   ├── 2-18
│   │   │   ├── 2-18
│   │   │   │   ├── 2-18.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-18.exe
│   │   │   │   │       └── 2-18.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-18.sln
│   │   │   └── 2-18.suo
│   │   ├── 2-19
│   │   │   ├── 2-19
│   │   │   │   ├── 2-19.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-19.exe
│   │   │   │   │       └── 2-19.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-19.sln
│   │   │   └── 2-19.suo
│   │   ├── 2-20
│   │   │   ├── 2-20
│   │   │   │   ├── 2-20.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-20.exe
│   │   │   │   │       └── 2-20.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-20.sln
│   │   │   └── 2-20.suo
│   │   ├── 2-21
│   │   │   ├── 2-21
│   │   │   │   ├── 2-21.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-21.exe
│   │   │   │   │       └── 2-21.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-21.sln
│   │   │   └── 2-21.suo
│   │   ├── 2-22
│   │   │   ├── 2-22
│   │   │   │   ├── 2-22.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-22.exe
│   │   │   │   │       └── 2-22.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-22.sln
│   │   │   └── 2-22.suo
│   │   ├── 2-23
│   │   │   ├── 2-23
│   │   │   │   ├── 2-23.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-23.exe
│   │   │   │   │       └── 2-23.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-23.sln
│   │   │   └── 2-23.suo
│   │   ├── 2-24
│   │   │   ├── 2-24
│   │   │   │   ├── 2-24.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-24.exe
│   │   │   │   │       └── 2-24.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-24.sln
│   │   │   └── 2-24.suo
│   │   ├── 2-25
│   │   │   ├── 2-25
│   │   │   │   ├── 2-25.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 2-25.exe
│   │   │   │   │       └── 2-25.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 2-25.sln
│   │   │   └── 2-25.suo
│   │   └── S1
│   │       ├── S1
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── S1.exe
│   │       │   │       └── S1.vshost.exe
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   └── S1.csproj
│   │       ├── S1.sln
│   │       └── S1.suo
│   ├── ch03
│   │   ├── 3-01
│   │   │   ├── 3-01
│   │   │   │   ├── 3-01.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-01.exe
│   │   │   │   │       └── 3-01.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-01.sln
│   │   │   └── 3-01.suo
│   │   ├── 3-02
│   │   │   ├── 3-02
│   │   │   │   ├── 3-02.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-02.exe
│   │   │   │   │       └── 3-02.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-02.sln
│   │   │   └── 3-02.suo
│   │   ├── 3-03
│   │   │   ├── 3-03
│   │   │   │   ├── 3-03.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-03.exe
│   │   │   │   │       └── 3-03.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-03.sln
│   │   │   └── 3-03.suo
│   │   ├── 3-04
│   │   │   ├── 3-04
│   │   │   │   ├── 3-04.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-04.exe
│   │   │   │   │       └── 3-04.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-04.sln
│   │   │   └── 3-04.suo
│   │   ├── 3-05
│   │   │   ├── 3-05
│   │   │   │   ├── 3-05.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-05.exe
│   │   │   │   │       └── 3-05.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-05.sln
│   │   │   └── 3-05.suo
│   │   ├── 3-06
│   │   │   ├── 3-06
│   │   │   │   ├── 3-06.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-06.exe
│   │   │   │   │       └── 3-06.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-06.sln
│   │   │   └── 3-06.suo
│   │   ├── 3-07
│   │   │   ├── 3-07
│   │   │   │   ├── 3-07.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-07.exe
│   │   │   │   │       └── 3-07.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-07.sln
│   │   │   └── 3-07.suo
│   │   ├── 3-08
│   │   │   ├── 3-08
│   │   │   │   ├── 3-08.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       └── 3-08.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-08.sln
│   │   │   └── 3-08.suo
│   │   ├── 3-09
│   │   │   ├── 3-09
│   │   │   │   ├── 3-09.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-09.exe
│   │   │   │   │       └── 3-09.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-09.sln
│   │   │   └── 3-09.suo
│   │   ├── 3-10
│   │   │   ├── 3-10
│   │   │   │   ├── 3-10.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-10.exe
│   │   │   │   │       └── 3-10.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-10.sln
│   │   │   └── 3-10.suo
│   │   ├── 3-11
│   │   │   ├── 3-11
│   │   │   │   ├── 3-11.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-11.exe
│   │   │   │   │       └── 3-11.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-11.sln
│   │   │   └── 3-11.suo
│   │   ├── 3-12
│   │   │   ├── 3-12
│   │   │   │   ├── 3-12.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-12.exe
│   │   │   │   │       └── 3-12.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-12.sln
│   │   │   └── 3-12.suo
│   │   ├── 3-13
│   │   │   ├── 3-13
│   │   │   │   ├── 3-13.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-13.exe
│   │   │   │   │       └── 3-13.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-13.sln
│   │   │   └── 3-13.suo
│   │   ├── 3-14
│   │   │   ├── 3-14
│   │   │   │   ├── 3-14.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-14.exe
│   │   │   │   │       └── 3-14.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-14.sln
│   │   │   └── 3-14.suo
│   │   ├── 3-15
│   │   │   ├── 3-15
│   │   │   │   ├── 3-15.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-15.exe
│   │   │   │   │       └── 3-15.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-15.sln
│   │   │   └── 3-15.suo
│   │   ├── 3-16
│   │   │   ├── 3-16
│   │   │   │   ├── 3-16.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-16.exe
│   │   │   │   │       └── 3-16.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-16.sln
│   │   │   └── 3-16.suo
│   │   ├── 3-17
│   │   │   ├── 3-17
│   │   │   │   ├── 3-17.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-17.exe
│   │   │   │   │       └── 3-17.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-17.sln
│   │   │   └── 3-17.suo
│   │   ├── 3-18
│   │   │   ├── 3-18
│   │   │   │   ├── 3-18.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-18.exe
│   │   │   │   │       └── 3-18.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-18.sln
│   │   │   └── 3-18.suo
│   │   ├── 3-19
│   │   │   ├── 3-19
│   │   │   │   ├── 3-19.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       └── 3-19.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-19.sln
│   │   │   └── 3-19.suo
│   │   ├── 3-20
│   │   │   ├── 3-20
│   │   │   │   ├── 3-20.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-20.exe
│   │   │   │   │       └── 3-20.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-20.sln
│   │   │   └── 3-20.suo
│   │   ├── 3-21
│   │   │   ├── 3-21
│   │   │   │   ├── 3-21.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-21.exe
│   │   │   │   │       └── 3-21.vshost.exe
│   │   │   │   ├── Class1.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-21.sln
│   │   │   └── 3-21.suo
│   │   ├── 3-22
│   │   │   ├── 3-22
│   │   │   │   ├── 3-22.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-22.exe
│   │   │   │   │       └── 3-22.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-22.sln
│   │   │   └── 3-22.suo
│   │   ├── 3-23
│   │   │   ├── 3-23
│   │   │   │   ├── 3-23.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-23.exe
│   │   │   │   │       └── 3-23.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-23.sln
│   │   │   └── 3-23.suo
│   │   ├── 3-24
│   │   │   ├── 3-24
│   │   │   │   ├── 3-24.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-24.exe
│   │   │   │   │       └── 3-24.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-24.sln
│   │   │   └── 3-24.suo
│   │   ├── 3-25
│   │   │   ├── 3-25
│   │   │   │   ├── 3-25.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-25.exe
│   │   │   │   │       └── 3-25.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-25.sln
│   │   │   └── 3-25.suo
│   │   ├── 3-26
│   │   │   ├── 3-26
│   │   │   │   ├── 3-26.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-26.exe
│   │   │   │   │       └── 3-26.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-26.sln
│   │   │   └── 3-26.suo
│   │   ├── 3-27
│   │   │   ├── 3-27
│   │   │   │   ├── 3-27.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-27.exe
│   │   │   │   │       └── 3-27.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-27.sln
│   │   │   └── 3-27.suo
│   │   ├── 3-28
│   │   │   ├── 3-28
│   │   │   │   ├── 3-28.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-28.exe
│   │   │   │   │       └── 3-28.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-28.sln
│   │   │   └── 3-28.suo
│   │   ├── 3-29
│   │   │   ├── 3-29
│   │   │   │   ├── 3-29.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-29.exe
│   │   │   │   │       └── 3-29.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-29.sln
│   │   │   └── 3-29.suo
│   │   ├── 3-30
│   │   │   ├── 3-30
│   │   │   │   ├── 3-30.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-30.exe
│   │   │   │   │       └── 3-30.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-30.sln
│   │   │   └── 3-30.suo
│   │   ├── 3-31
│   │   │   ├── 3-31
│   │   │   │   ├── 3-31.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 3-31.exe
│   │   │   │   │       └── 3-31.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 3-31.sln
│   │   │   └── 3-31.suo
│   │   └── S02
│   │       ├── S02
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── S02.exe
│   │       │   │       └── S02.vshost.exe
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   └── S02.csproj
│   │       ├── S02.sln
│   │       └── S02.suo
│   ├── ch04
│   │   ├── 4-01
│   │   │   ├── 4-01
│   │   │   │   ├── 4-01.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 4-01.exe
│   │   │   │   │       └── 4-01.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 4-01.sln
│   │   │   └── 4-01.suo
│   │   ├── 4-02
│   │   │   ├── 4-02
│   │   │   │   ├── 4-02.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 4-02.exe
│   │   │   │   │       └── 4-02.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 4-02.sln
│   │   │   └── 4-02.suo
│   │   ├── 4-03
│   │   │   ├── 4-03
│   │   │   │   ├── 4-03.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 4-03.exe
│   │   │   │   │       └── 4-03.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 4-03.sln
│   │   │   └── 4-03.suo
│   │   ├── 4-04
│   │   │   ├── 4-04
│   │   │   │   ├── 4-04.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 4-04.exe
│   │   │   │   │       ├── 4-04.pdb
│   │   │   │   │       └── 4-04.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── 4-04.csproj.FileList.txt
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── __04.Form1.resources
│   │   │   │   │       ├── __04.Properties.Resources.resources
│   │   │   │   │       ├── 4-04.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 4-04.exe
│   │   │   │   │       ├── 4-04.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 4-04.sln
│   │   │   └── 4-04.suo
│   │   ├── 4-05
│   │   │   ├── 4-05
│   │   │   │   ├── 4-05.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 4-05.exe
│   │   │   │   │       ├── 4-05.pdb
│   │   │   │   │       └── 4-05.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── 4-05.csproj.FileList.txt
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── __05.Form1.resources
│   │   │   │   │       ├── __05.Properties.Resources.resources
│   │   │   │   │       ├── 4-05.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 4-05.exe
│   │   │   │   │       ├── 4-05.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 4-05.sln
│   │   │   └── 4-05.suo
│   │   ├── 4-06
│   │   │   ├── 4-06
│   │   │   │   ├── 4-06.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 4-06.exe
│   │   │   │   │       └── 4-06.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 4-06.sln
│   │   │   └── 4-06.suo
│   │   ├── 4-07
│   │   │   ├── 4-07
│   │   │   │   ├── 4-07.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 4-07.exe
│   │   │   │   │       ├── 4-07.pdb
│   │   │   │   │       └── 4-07.vshost.exe
│   │   │   │   ├── obj
│   │   │   │   │   ├── 4-07.csproj.FileList.txt
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 4-07.exe
│   │   │   │   │       ├── 4-07.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 4-07.sln
│   │   │   └── 4-07.suo
│   │   ├── 4-08
│   │   │   ├── 4-08
│   │   │   │   ├── 4-08.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 4-08.exe
│   │   │   │   │       └── 4-08.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 4-08.sln
│   │   │   └── 4-08.suo
│   │   ├── 4-09
│   │   │   ├── 4-09
│   │   │   │   ├── 4-09.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 4-09.exe
│   │   │   │   │       └── 4-09.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 4-09.sln
│   │   │   └── 4-09.suo
│   │   └── S03
│   │       ├── S03
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── S03.exe
│   │       │   │       └── S03.vshost.exe
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   └── S03.csproj
│   │       ├── S03.sln
│   │       └── S03.suo
│   ├── ch05
│   │   ├── 5-01
│   │   │   ├── 5-01
│   │   │   │   ├── 5-01.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-01.exe
│   │   │   │   │       └── 5-01.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-01.sln
│   │   │   └── 5-01.suo
│   │   ├── 5-02
│   │   │   ├── 5-02
│   │   │   │   ├── 5-02.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-02.exe
│   │   │   │   │       └── 5-02.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-02.sln
│   │   │   └── 5-02.suo
│   │   ├── 5-03
│   │   │   ├── 5-03
│   │   │   │   ├── 5-03.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-03.exe
│   │   │   │   │       └── 5-03.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-03.sln
│   │   │   └── 5-03.suo
│   │   ├── 5-04
│   │   │   ├── 5-04
│   │   │   │   ├── 5-04.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-04.exe
│   │   │   │   │       └── 5-04.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-04.sln
│   │   │   └── 5-04.suo
│   │   ├── 5-05
│   │   │   ├── 5-05
│   │   │   │   ├── 5-05.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-05.exe
│   │   │   │   │       └── 5-05.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Form2.cs
│   │   │   │   ├── Form2.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-05.sln
│   │   │   └── 5-05.suo
│   │   ├── 5-06
│   │   │   ├── 5-06
│   │   │   │   ├── 5-06.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-06.exe
│   │   │   │   │       └── 5-06.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-06.sln
│   │   │   └── 5-06.suo
│   │   ├── 5-07
│   │   │   ├── 5-07
│   │   │   │   ├── 5-07.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-07.exe
│   │   │   │   │       └── 5-07.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-07.sln
│   │   │   └── 5-07.suo
│   │   ├── 5-08
│   │   │   ├── 5-08
│   │   │   │   ├── 5-08.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-08.exe
│   │   │   │   │       └── 5-08.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-08.sln
│   │   │   └── 5-08.suo
│   │   ├── 5-09
│   │   │   ├── 5-09
│   │   │   │   ├── 5-09.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-09.exe
│   │   │   │   │       └── 5-09.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-09.sln
│   │   │   └── 5-09.suo
│   │   ├── 5-10
│   │   │   ├── 5-10
│   │   │   │   ├── 5-10.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-10.exe
│   │   │   │   │       └── 5-10.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-10.sln
│   │   │   └── 5-10.suo
│   │   ├── 5-11
│   │   │   ├── 5-11
│   │   │   │   ├── 5-11.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-11.exe
│   │   │   │   │       └── 5-11.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-11.sln
│   │   │   └── 5-11.suo
│   │   ├── 5-12
│   │   │   ├── 5-12
│   │   │   │   ├── 5-12.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 5-12.exe
│   │   │   │   │       └── 5-12.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 5-12.sln
│   │   │   └── 5-12.suo
│   │   └── S04
│   │       ├── S04
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── S04.exe
│   │       │   │       └── S04.vshost.exe
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   └── S04.csproj
│   │       ├── S04.sln
│   │       └── S04.suo
│   ├── ch06
│   │   ├── 6-01
│   │   │   ├── 6-01
│   │   │   │   ├── 6-01.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 6-01.exe
│   │   │   │   │       └── 6-01.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 6-01.sln
│   │   │   └── 6-01.suo
│   │   ├── 6-02
│   │   │   ├── 6-02
│   │   │   │   ├── 6-02.csproj
│   │   │   │   ├── 6-02.csproj.user
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 6-02.exe
│   │   │   │   │       └── 6-02.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 6-02.sln
│   │   │   └── 6-02.suo
│   │   ├── 6-03
│   │   │   ├── 6-03
│   │   │   │   ├── 6-03.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 6-03.exe
│   │   │   │   │       └── 6-03.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 6-03.sln
│   │   │   └── 6-03.suo
│   │   ├── 6-04
│   │   │   ├── 6-04
│   │   │   │   ├── 6-04.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 6-04.exe
│   │   │   │   │       └── 6-04.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 6-04.sln
│   │   │   └── 6-04.suo
│   │   ├── 6-05
│   │   │   ├── 6-05
│   │   │   │   ├── 6-05.csproj
│   │   │   │   ├── 6-05.csproj.user
│   │   │   │   ├── app.config
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 6-05.exe
│   │   │   │   │       ├── 6-05.exe.config
│   │   │   │   │       ├── 6-05.vshost.exe
│   │   │   │   │       └── 6-05.vshost.exe.config
│   │   │   │   ├── Child.cs
│   │   │   │   ├── Child.Designer.cs
│   │   │   │   ├── Child.resx
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 6-05.sln
│   │   │   └── 6-05.suo
│   │   ├── 6-06
│   │   │   ├── 6-06
│   │   │   │   ├── 6-06.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 6-06.exe
│   │   │   │   │       └── 6-06.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Form2.cs
│   │   │   │   ├── Form2.Designer.cs
│   │   │   │   ├── Form2.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 6-06.sln
│   │   │   └── 6-06.suo
│   │   └── S05
│   │       ├── S05
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── S05.exe
│   │       │   │       └── S05.vshost.exe
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Form2.cs
│   │       │   ├── Form2.Designer.cs
│   │       │   ├── Form2.resx
│   │       │   ├── Form3.cs
│   │       │   ├── Form3.Designer.cs
│   │       │   ├── Form3.resx
│   │       │   ├── msagent
│   │       │   │   └── courtney.acs
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   └── S05.csproj
│   │       ├── S05.sln
│   │       └── S05.suo
│   ├── ch07
│   │   ├── 7-01
│   │   │   ├── 7-01
│   │   │   │   ├── 7-01.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 7-01.exe
│   │   │   │   │       └── 7-01.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── InputBox.cs
│   │   │   │   ├── InputBox.Designer.cs
│   │   │   │   ├── InputBox.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 7-01.sln
│   │   │   └── 7-01.suo
│   │   ├── 7-02
│   │   │   ├── 7-02
│   │   │   │   ├── 7-02.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 7-02.exe
│   │   │   │   │       └── 7-02.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 7-02.sln
│   │   │   └── 7-02.suo
│   │   ├── 7-03
│   │   │   ├── 7-03
│   │   │   │   ├── 7-03.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 7-03.exe
│   │   │   │   │       └── 7-03.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 7-03.sln
│   │   │   └── 7-03.suo
│   │   ├── 7-04
│   │   │   ├── 7-04
│   │   │   │   ├── 7-04.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 7-04.exe
│   │   │   │   │       └── 7-04.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 7-04.sln
│   │   │   └── 7-04.suo
│   │   ├── 7-05
│   │   │   ├── 7-05
│   │   │   │   ├── 7-05.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 7-05.exe
│   │   │   │   │       └── 7-05.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 7-05.sln
│   │   │   └── 7-05.suo
│   │   └── S06
│   │       ├── S06
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── S06.exe
│   │       │   │       └── S06.vshost.exe
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Form2.cs
│   │       │   ├── Form2.Designer.cs
│   │       │   ├── Form2.resx
│   │       │   ├── Form3.cs
│   │       │   ├── Form3.Designer.cs
│   │       │   ├── Form3.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   └── S06.csproj
│   │       ├── S06.sln
│   │       └── S06.suo
│   ├── ch08
│   │   ├── 8-01
│   │   │   ├── 8-01
│   │   │   │   ├── 8-01.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 8-01.exe
│   │   │   │   │       └── 8-01.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 8-01.sln
│   │   │   └── 8-01.suo
│   │   ├── 8-03
│   │   │   ├── 8-03
│   │   │   │   ├── 8-03.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 8-03.exe
│   │   │   │   │       ├── 8-03.pdb
│   │   │   │   │       └── 8-03.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── 8-03.csproj.FileListAbsolute.txt
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── __03.Form1.resources
│   │   │   │   │       ├── __03.Properties.Resources.resources
│   │   │   │   │       ├── 8-03.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 8-03.exe
│   │   │   │   │       ├── 8-03.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 8-03.sln
│   │   │   └── 8-03.suo
│   │   └── S07
│   │       ├── S07
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── S07.exe
│   │       │   │       └── S07.vshost.exe
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   └── S07.csproj
│   │       ├── S07.sln
│   │       └── S07.suo
│   ├── ch09
│   │   ├── 9-01
│   │   │   ├── 9-01
│   │   │   │   ├── 9-01.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 9-01.exe
│   │   │   │   │       └── 9-01.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 9-01.sln
│   │   │   └── 9-01.suo
│   │   ├── 9-02
│   │   │   ├── 9-02
│   │   │   │   ├── 9-02.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 9-02.exe
│   │   │   │   │       └── 9-02.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 9-02.sln
│   │   │   └── 9-02.suo
│   │   ├── 9-03
│   │   │   ├── 9-02.suo
│   │   │   ├── 9-03
│   │   │   │   ├── 9-03.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 9-03.exe
│   │   │   │   │       └── 9-03.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 9-03.sln
│   │   │   └── 9-03.suo
│   │   ├── 9-04
│   │   │   ├── 9-04
│   │   │   │   ├── 9-04.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 9-04.exe
│   │   │   │   │       ├── 9-04.vshost.exe
│   │   │   │   │       ├── AxInterop.PicClip.dll
│   │   │   │   │       └── Interop.PicClip.dll
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 9-04.sln
│   │   │   └── 9-04.suo
│   │   ├── 9-05
│   │   │   ├── 9-05
│   │   │   │   ├── 9-05.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 9-05.exe
│   │   │   │   │       └── 9-05.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 9-05.sln
│   │   │   └── 9-05.suo
│   │   ├── 9-06
│   │   │   ├── 9-06
│   │   │   │   ├── 9-06.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 9-06.exe
│   │   │   │   │       └── 9-06.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 9-06.sln
│   │   │   └── 9-06.suo
│   │   ├── 9-07
│   │   │   ├── 9-07
│   │   │   │   ├── 9-07.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 9-07.exe
│   │   │   │   │       └── 9-07.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 9-07.sln
│   │   │   └── 9-07.suo
│   │   ├── 9-08
│   │   │   ├── 9-08
│   │   │   │   ├── 9-08.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 9-08.exe
│   │   │   │   │       └── 9-08.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   └── Resources
│   │   │   │       └── gl001.jpg
│   │   │   ├── 9-08.sln
│   │   │   └── 9-08.suo
│   │   └── S08
│   │       ├── S08
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── S08.exe
│   │       │   │       └── S08.vshost.exe
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   └── S08.csproj
│   │       ├── S08.sln
│   │       └── S08.suo
│   ├── ch10
│   │   ├── 10-01
│   │   │   ├── 10-01
│   │   │   │   ├── 10-01.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-01.exe
│   │   │   │   │       ├── 10-01.pdb
│   │   │   │   │       └── 10-01.vshost.exe
│   │   │   │   ├── obj
│   │   │   │   │   ├── 10-01.csproj.FileListAbsolute.txt
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-01.exe
│   │   │   │   │       ├── 10-01.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 10-01.sln
│   │   │   └── 10-01.suo
│   │   ├── 10-02
│   │   │   ├── 10-02
│   │   │   │   ├── 10-02.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-02.exe
│   │   │   │   │       ├── 10-02.pdb
│   │   │   │   │       └── 10-02.vshost.exe
│   │   │   │   ├── obj
│   │   │   │   │   ├── 10-02.csproj.FileListAbsolute.txt
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-02.exe
│   │   │   │   │       ├── 10-02.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 10-02.sln
│   │   │   └── 10-02.suo
│   │   ├── 10-03
│   │   │   ├── 10-03
│   │   │   │   ├── 10-03.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-03.exe
│   │   │   │   │       ├── 10-03.pdb
│   │   │   │   │       └── 10-03.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── 10-03.csproj.FileListAbsolute.txt
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── _0_03.Form1.resources
│   │   │   │   │       ├── _0_03.Properties.Resources.resources
│   │   │   │   │       ├── 10-03.csproj.GenerateResource.Cache
│   │   │   │   │       ├── 10-03.exe
│   │   │   │   │       ├── 10-03.pdb
│   │   │   │   │       └── TempPE
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 10-03.sln
│   │   │   └── 10-03.suo
│   │   ├── 10-04
│   │   │   ├── 10-04
│   │   │   │   ├── 10-04.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-04.exe
│   │   │   │   │       └── 10-04.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 10-04.sln
│   │   │   └── 10-04.suo
│   │   ├── 10-05
│   │   │   ├── 10-05
│   │   │   │   ├── 10-05.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-05.exe
│   │   │   │   │       └── 10-05.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 10-05.sln
│   │   │   └── 10-05.suo
│   │   ├── 10-06
│   │   │   ├── 10-06
│   │   │   │   ├── 10-06.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-06.exe
│   │   │   │   │       └── 10-06.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 10-06.sln
│   │   │   └── 10-06.suo
│   │   ├── 10-07
│   │   │   ├── 10-07
│   │   │   │   ├── 10-07.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-07.exe
│   │   │   │   │       └── 10-07.vshost.exe
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── 10-07.sln
│   │   │   └── 10-07.suo
│   │   ├── 10-08
│   │   │   ├── 10-08
│   │   │   │   ├── 10-08.csproj
│   │   │   │   ├── 10-08.csproj.user
│   │   │   │   ├── app.config
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-08.exe
│   │   │   │   │       ├── 10-08.exe.config
│   │   │   │   │       ├── 10-08.vshost.exe
│   │   │   │   │       └── 10-08.vshost.exe.config
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── NorthwindDataSet.Designer.cs
│   │   │   │   ├── NorthwindDataSet.xsc
│   │   │   │   ├── NorthwindDataSet.xsd
│   │   │   │   ├── NorthwindDataSet.xss
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 10-08.sln
│   │   │   └── 10-08.suo
│   │   ├── 10-09
│   │   │   ├── 10-09
│   │   │   │   ├── 10-09.csproj
│   │   │   │   ├── ADDRBOOKDataSet.Designer.cs
│   │   │   │   ├── ADDRBOOKDataSet.xsc
│   │   │   │   ├── ADDRBOOKDataSet.xsd
│   │   │   │   ├── ADDRBOOKDataSet.xss
│   │   │   │   ├── app.config
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── 10-09.exe
│   │   │   │   │       ├── 10-09.exe.config
│   │   │   │   │       ├── 10-09.vshost.exe
│   │   │   │   │       └── 10-09.vshost.exe.config
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── 10-09.sln
│   │   │   └── 10-09.suo
│   │   └── S09
│   │       ├── S09
│   │       │   ├── About.cs
│   │       │   ├── About.resx
│   │       │   ├── app.config
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── FilmManager.mdb
│   │       │   │       ├── S09.exe
│   │       │   │       ├── S09.exe.config
│   │       │   │       ├── S09.vshost.exe
│   │       │   │       └── S09.vshost.exe.config
│   │       │   ├── Customer.cs
│   │       │   ├── Customer.resx
│   │       │   ├── Discard.cs
│   │       │   ├── Discard.resx
│   │       │   ├── DSetEmp.cs
│   │       │   ├── DSetEmp.Designer.cs
│   │       │   ├── DSetEmp.xsc
│   │       │   ├── DSetEmp.xsd
│   │       │   ├── DSetEmp.xss
│   │       │   ├── DSetEmp.xsx
│   │       │   ├── Employees.cs
│   │       │   ├── Employees.resx
│   │       │   ├── Film.cs
│   │       │   ├── FilmFind.cs
│   │       │   ├── FilmFind.resx
│   │       │   ├── FilmManager.cs
│   │       │   ├── FilmManagerDataSet.Designer.cs
│   │       │   ├── FilmManagerDataSet.xsc
│   │       │   ├── FilmManagerDataSet.xsd
│   │       │   ├── FilmManagerDataSet.xss
│   │       │   ├── FilmManager.Designer.cs
│   │       │   ├── FilmManager.mdb
│   │       │   ├── FilmManager.resx
│   │       │   ├── Film.resx
│   │       │   ├── HireB.cs
│   │       │   ├── HireB.resx
│   │       │   ├── Hire.cs
│   │       │   ├── Hire.resx
│   │       │   ├── log.cs
│   │       │   ├── log.resx
│   │       │   ├── myDA.cs
│   │       │   ├── myDA.Designer.cs
│   │       │   ├── myDA.xsc
│   │       │   ├── myDA.xsd
│   │       │   ├── myDA.xss
│   │       │   ├── myDS.cs
│   │       │   ├── myDS.Designer.cs
│   │       │   ├── myDS.xsc
│   │       │   ├── myDS.xsd
│   │       │   ├── myDS.xss
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── Purchase.cs
│   │       │   ├── Purchase.Designer.cs
│   │       │   ├── Purchase.resx
│   │       │   ├── Rent.cs
│   │       │   ├── Rent.Designer.cs
│   │       │   ├── Rent.resx
│   │       │   ├── Resources
│   │       │   │   └── GLOBE.WMF
│   │       │   ├── ReturnfB.cs
│   │       │   ├── ReturnfB.Designer.cs
│   │       │   ├── ReturnfB.resx
│   │       │   ├── Returnf.cs
│   │       │   ├── Returnf.Designer.cs
│   │       │   ├── Returnf.resx
│   │       │   └── S09.csproj
│   │       ├── S09.sln
│   │       └── S09.suo
│   ├── ch11
│   │   ├── 11-01.aspx
│   │   ├── 11-02.aspx
│   │   ├── 11-03.aspx
│   │   ├── 11-04.aspx
│   │   ├── 11-05.aspx
│   │   ├── 11-06
│   │   │   └── Global.asax
│   │   ├── 11-07.aspx
│   │   ├── 11-08.aspx
│   │   ├── 11-09.aspx
│   │   ├── 11-10.aspx
│   │   ├── 11-11.aspx
│   │   ├── 11-12.aspx
│   │   ├── 11-13.aspx
│   │   ├── 11-14
│   │   │   ├── App_Data
│   │   │   ├── Default.aspx
│   │   │   ├── Default.aspx.cs
│   │   │   └── Web.Config
│   │   ├── 11-16.aspx
│   │   ├── 11-17.aspx
│   │   ├── 11-18
│   │   │   ├── App_Data
│   │   │   ├── Default.aspx
│   │   │   ├── Default.aspx.cs
│   │   │   └── Web.Config
│   │   ├── 11-19.aspx
│   │   ├── 11-20
│   │   │   ├── App_Data
│   │   │   ├── App_WebReferences
│   │   │   │   └── DecideLeap
│   │   │   │       ├── Service.disco
│   │   │   │       ├── Service.discomap
│   │   │   │       └── Service.wsdl
│   │   │   ├── Default.aspx
│   │   │   ├── Default.aspx.cs
│   │   │   └── Web.Config
│   │   ├── LeapYear
│   │   │   ├── App_Code
│   │   │   │   └── Service.cs
│   │   │   ├── App_Data
│   │   │   ├── Service.asmx
│   │   │   └── Web.Config
│   │   ├── Leave.xml
│   │   ├── result.gif
│   │   ├── S10
│   │   │   ├── App_Data
│   │   │   ├── Leave.xml
│   │   │   ├── submit.gif
│   │   │   ├── Web.Config
│   │   │   ├── WebForm1.aspx
│   │   │   ├── WebForm1.aspx.cs
│   │   │   ├── WebForm2.aspx
│   │   │   └── WebForm2.aspx.cs
│   │   ├── smile1.GIF
│   │   └── smile.gif
│   ├── ch12
│   │   ├── Mail
│   │   │   ├── Mail
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Mail.exe
│   │   │   │   │       └── Mail.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Mail.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── Mail.sln
│   │   │   └── Mail.suo
│   │   ├── MediaPlayer
│   │   │   ├── MediaPlayer
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.WMPLib.dll
│   │   │   │   │       ├── Interop.WMPLib.dll
│   │   │   │   │       ├── MediaPlayer.exe
│   │   │   │   │       └── MediaPlayer.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── MediaPlayer.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── MediaPlayer.sln
│   │   │   ├── MediaPlayer.suo
│   │   │   └── Thumbs.db
│   │   ├── Sale
│   │   │   ├── Sale
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AxInterop.MSChart20Lib.dll
│   │   │   │   │       ├── AxInterop.MSFlexGridLib.dll
│   │   │   │   │       ├── Interop.MSChart20Lib.dll
│   │   │   │   │       ├── Interop.MSFlexGridLib.dll
│   │   │   │   │       ├── Sale.exe
│   │   │   │   │       └── Sale.vshost.exe
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Sale.csproj
│   │   │   │   └── sale.txt
│   │   │   ├── Sale.sln
│   │   │   └── Sale.suo
│   │   └── Web浏览器
│   │       ├── Web浏览器
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── Web浏览器.exe
│   │       │   │       └── Web浏览器.vshost.exe
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   └── Web浏览器.csproj
│   │       ├── Web浏览器.sln
│   │       └── Web浏览器.suo
│   └── DataBase
│       ├── addrbook.MDB
│       └── FilmManager.mdb

662 directories, 1394 files

实例下载地址

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警