在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 《C#程序设计教程第2版》配套源码

《C#程序设计教程第2版》配套源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.59M
  • 下载次数:1
  • 浏览次数:94
  • 发布时间:2020-10-01
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
此为《C# 程序设计教程 第2版》一书的配套源码 作者:郑阿奇 梁敬东 主编 朱毅华 时跃华 赵青松 编著 出版日期:2011年08月04日 C#程序设计教程(第2版)以Microsoft. Visual Studio.NET 2008/2010作为平台,在继承第1版的基本内容和基本方法的基础上,对内容体系结构进行调整、修改和优化、特别是实例实用性很多增强。包含教程、习题和实验。教程先介绍NET开发平台VS2010,通过一个简单实例了解控制台方式和界面方式操作过程。然后系统介绍C#的编程基础、面向对象编程基础、面向对象编程进阶。此后介绍 Windows应用程序开发、GDI+编程、文件操作、数据
【实例截图】
【核心代码】
代码
└── 代码
├── Chapter1
│   ├── Ex1_1
│   │   ├── Ex1_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex1_1.exe
│   │   │   │   ├── Ex1_1.pdb
│   │   │   │   ├── Ex1_1.vshost.exe
│   │   │   │   └── Ex1_1.vshost.exe.manifest
│   │   │   ├── Ex1_1.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex1_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex1_1.exe
│   │   │   │   └── Ex1_1.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex1_1.sln
│   │   └── Ex1_1.suo
│   └── Ex1_2
│   ├── Ex1_2
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Ex1_2.exe
│   │   │   ├── Ex1_2.pdb
│   │   │   ├── Ex1_2.vshost.exe
│   │   │   └── Ex1_2.vshost.exe.manifest
│   │   ├── Ex1_2.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Ex1_2.csproj.FileListAbsolute.txt
│   │   │   ├── Ex1_2.exe
│   │   │   ├── Ex1_2.Form1.resources
│   │   │   ├── Ex1_2.pdb
│   │   │   ├── Ex1_2.Properties.Resources.resources
│   │   │   ├── GenerateResource.read.1.tlog
│   │   │   └── GenerateResource.write.1.tlog
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Ex1_2.sln
│   └── Ex1_2.suo
├── Chapter2
│   ├── Ex2_1
│   │   ├── Ex2_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_1.exe
│   │   │   │   ├── Ex2_1.pdb
│   │   │   │   ├── Ex2_1.vshost.exe
│   │   │   │   └── Ex2_1.vshost.exe.manifest
│   │   │   ├── Ex2_1.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_1.exe
│   │   │   │   └── Ex2_1.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_1.sln
│   │   └── Ex2_1.suo
│   ├── Ex2_10
│   │   ├── Ex2_10
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_10.exe
│   │   │   │   ├── Ex2_10.pdb
│   │   │   │   ├── Ex2_10.vshost.exe
│   │   │   │   └── Ex2_10.vshost.exe.manifest
│   │   │   ├── Ex2_10.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_10.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_10.exe
│   │   │   │   └── Ex2_10.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_10.sln
│   │   └── Ex2_10.suo
│   ├── Ex2_11
│   │   ├── Ex2_11
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_11.exe
│   │   │   │   ├── Ex2_11.pdb
│   │   │   │   ├── Ex2_11.vshost.exe
│   │   │   │   └── Ex2_11.vshost.exe.manifest
│   │   │   ├── Ex2_11.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_11.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_11.exe
│   │   │   │   └── Ex2_11.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_11.sln
│   │   └── Ex2_11.suo
│   ├── Ex2_12
│   │   ├── Ex2_12
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_12.exe
│   │   │   │   ├── Ex2_12.pdb
│   │   │   │   ├── Ex2_12.vshost.exe
│   │   │   │   └── Ex2_12.vshost.exe.manifest
│   │   │   ├── Ex2_12.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_12.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_12.exe
│   │   │   │   └── Ex2_12.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_12.sln
│   │   └── Ex2_12.suo
│   ├── Ex2_13
│   │   ├── Ex2_13
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_13.exe
│   │   │   │   ├── Ex2_13.pdb
│   │   │   │   ├── Ex2_13.vshost.exe
│   │   │   │   └── Ex2_13.vshost.exe.manifest
│   │   │   ├── Ex2_13.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_13.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_13.exe
│   │   │   │   └── Ex2_13.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_13.sln
│   │   └── Ex2_13.suo
│   ├── Ex2_14
│   │   ├── Ex2_14
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_14.exe
│   │   │   │   ├── Ex2_14.pdb
│   │   │   │   ├── Ex2_14.vshost.exe
│   │   │   │   └── Ex2_14.vshost.exe.manifest
│   │   │   ├── Ex2_14.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_14.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_14.exe
│   │   │   │   └── Ex2_14.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_14.sln
│   │   └── Ex2_14.suo
│   ├── Ex2_15
│   │   ├── Ex2_15
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_15.exe
│   │   │   │   ├── Ex2_15.pdb
│   │   │   │   ├── Ex2_15.vshost.exe
│   │   │   │   └── Ex2_15.vshost.exe.manifest
│   │   │   ├── Ex2_15.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_15.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_15.exe
│   │   │   │   └── Ex2_15.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_15.sln
│   │   └── Ex2_15.suo
│   ├── Ex2_16
│   │   ├── Ex2_16
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_16.exe
│   │   │   │   ├── Ex2_16.pdb
│   │   │   │   ├── Ex2_16.vshost.exe
│   │   │   │   └── Ex2_16.vshost.exe.manifest
│   │   │   ├── Ex2_16.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_16.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_16.exe
│   │   │   │   └── Ex2_16.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_16.sln
│   │   └── Ex2_16.suo
│   ├── Ex2_17
│   │   ├── Ex2_17
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_17.exe
│   │   │   │   ├── Ex2_17.pdb
│   │   │   │   ├── Ex2_17.vshost.exe
│   │   │   │   └── Ex2_17.vshost.exe.manifest
│   │   │   ├── Ex2_17.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_17.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_17.exe
│   │   │   │   └── Ex2_17.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_17.sln
│   │   └── Ex2_17.suo
│   ├── Ex2_18
│   │   ├── Ex2_18
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_18.exe
│   │   │   │   ├── Ex2_18.pdb
│   │   │   │   ├── Ex2_18.vshost.exe
│   │   │   │   └── Ex2_18.vshost.exe.manifest
│   │   │   ├── Ex2_18.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_18.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_18.exe
│   │   │   │   └── Ex2_18.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_18.sln
│   │   └── Ex2_18.suo
│   ├── Ex2_19
│   │   ├── Ex2_19
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_19.exe
│   │   │   │   ├── Ex2_19.pdb
│   │   │   │   ├── Ex2_19.vshost.exe
│   │   │   │   └── Ex2_19.vshost.exe.manifest
│   │   │   ├── Ex2_19.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_19.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_19.exe
│   │   │   │   └── Ex2_19.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_19.sln
│   │   └── Ex2_19.suo
│   ├── Ex2_2
│   │   ├── Ex2_2
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_2.exe
│   │   │   │   ├── Ex2_2.pdb
│   │   │   │   ├── Ex2_2.vshost.exe
│   │   │   │   └── Ex2_2.vshost.exe.manifest
│   │   │   ├── Ex2_2.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_2.exe
│   │   │   │   └── Ex2_2.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_2.sln
│   │   └── Ex2_2.suo
│   ├── Ex2_20
│   │   ├── Ex2_20
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_20.exe
│   │   │   │   ├── Ex2_20.pdb
│   │   │   │   ├── Ex2_20.vshost.exe
│   │   │   │   └── Ex2_20.vshost.exe.manifest
│   │   │   ├── Ex2_20.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_20.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_20.exe
│   │   │   │   └── Ex2_20.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_20.sln
│   │   └── Ex2_20.suo
│   ├── Ex2_21
│   │   ├── Ex2_21
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_21.exe
│   │   │   │   ├── Ex2_21.pdb
│   │   │   │   ├── Ex2_21.vshost.exe
│   │   │   │   └── Ex2_21.vshost.exe.manifest
│   │   │   ├── Ex2_21.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_21.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_21.exe
│   │   │   │   └── Ex2_21.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_21.sln
│   │   └── Ex2_21.suo
│   ├── Ex2_22
│   │   ├── Ex2_22
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_22.exe
│   │   │   │   ├── Ex2_22.pdb
│   │   │   │   ├── Ex2_22.vshost.exe
│   │   │   │   └── Ex2_22.vshost.exe.manifest
│   │   │   ├── Ex2_22.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_22.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_22.exe
│   │   │   │   └── Ex2_22.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_22.sln
│   │   └── Ex2_22.suo
│   ├── Ex2_23
│   │   ├── Ex2_23
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_23.exe
│   │   │   │   ├── Ex2_23.pdb
│   │   │   │   ├── Ex2_23.vshost.exe
│   │   │   │   └── Ex2_23.vshost.exe.manifest
│   │   │   ├── Ex2_23.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_23.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_23.exe
│   │   │   │   └── Ex2_23.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_23.sln
│   │   └── Ex2_23.suo
│   ├── Ex2_24
│   │   ├── Ex2_24
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_24.exe
│   │   │   │   ├── Ex2_24.pdb
│   │   │   │   ├── Ex2_24.vshost.exe
│   │   │   │   └── Ex2_24.vshost.exe.manifest
│   │   │   ├── Ex2_24.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_24.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_24.exe
│   │   │   │   └── Ex2_24.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_24.sln
│   │   └── Ex2_24.suo
│   ├── Ex2.3
│   │   ├── Ex2.3
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2.3.exe
│   │   │   │   ├── Ex2.3.pdb
│   │   │   │   └── Ex2.3.vshost.exe
│   │   │   ├── Ex2_3.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_3.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2.3.exe
│   │   │   │   └── Ex2.3.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2.3.sln
│   │   └── Ex2.3.suo
│   ├── Ex2_4
│   │   ├── Ex2_4
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_4.exe
│   │   │   │   ├── Ex2_4.pdb
│   │   │   │   ├── Ex2_4.vshost.exe
│   │   │   │   └── Ex2_4.vshost.exe.manifest
│   │   │   ├── Ex2_4.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_4.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_4.exe
│   │   │   │   └── Ex2_4.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_4.sln
│   │   └── Ex2_4.suo
│   ├── Ex2_5
│   │   ├── Ex2_5
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_5.exe
│   │   │   │   ├── Ex2_5.pdb
│   │   │   │   ├── Ex2_5.vshost.exe
│   │   │   │   └── Ex2_5.vshost.exe.manifest
│   │   │   ├── Ex2_5.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_5.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_5.exe
│   │   │   │   └── Ex2_5.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_5.sln
│   │   └── Ex2_5.suo
│   ├── Ex2_6
│   │   ├── Ex2_6
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_6.exe
│   │   │   │   ├── Ex2_6.pdb
│   │   │   │   ├── Ex2_6.vshost.exe
│   │   │   │   └── Ex2_6.vshost.exe.manifest
│   │   │   ├── Ex2_6.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_6.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_6.exe
│   │   │   │   └── Ex2_6.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_6.sln
│   │   └── Ex2_6.suo
│   ├── Ex2_7
│   │   ├── Ex2_7
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_7.exe
│   │   │   │   ├── Ex2_7.pdb
│   │   │   │   ├── Ex2_7.vshost.exe
│   │   │   │   └── Ex2_7.vshost.exe.manifest
│   │   │   ├── Ex2_7.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_7.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_7.exe
│   │   │   │   └── Ex2_7.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_7.sln
│   │   └── Ex2_7.suo
│   ├── Ex2_8
│   │   ├── Ex2_8
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex2_8.exe
│   │   │   │   ├── Ex2_8.pdb
│   │   │   │   ├── Ex2_8.vshost.exe
│   │   │   │   └── Ex2_8.vshost.exe.manifest
│   │   │   ├── Ex2_8.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex2_8.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex2_8.exe
│   │   │   │   └── Ex2_8.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex2_8.sln
│   │   └── Ex2_8.suo
│   └── Ex2_9
│   ├── Ex2_9
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Ex2_9.vshost.exe
│   │   │   └── Ex2_9.vshost.exe.manifest
│   │   ├── Ex2_9.csproj
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   └── Ex2_9.csproj.FileListAbsolute.txt
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Ex2_9.sln
│   └── Ex2_9.suo
├── Chapter3
│   ├── Ex3_1
│   │   ├── Ex3_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── ConsoleApplication1.exe
│   │   │   │   ├── ConsoleApplication1.pdb
│   │   │   │   ├── ConsoleApplication1.vshost.exe
│   │   │   │   └── ConsoleApplication1.vshost.exe.manifest
│   │   │   ├── Ex3_1.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── ConsoleApplication1.csproj.FileListAbsolute.txt
│   │   │   │   ├── ConsoleApplication1.exe
│   │   │   │   ├── ConsoleApplication1.pdb
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   └── Ex3_1.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_1.sln
│   │   └── Ex3_1.suo
│   ├── Ex3_10
│   │   ├── Ex3_10
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_10.exe
│   │   │   │   ├── Ex3_10.pdb
│   │   │   │   ├── Ex3_10.vshost.exe
│   │   │   │   └── Ex3_10.vshost.exe.manifest
│   │   │   ├── Ex3_10.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_10.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_10.exe
│   │   │   │   └── Ex3_10.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_10.sln
│   │   └── Ex3_10.suo
│   ├── Ex3_11
│   │   ├── Ex3_11
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_11.exe
│   │   │   │   ├── Ex3_11.pdb
│   │   │   │   ├── Ex3_11.vshost.exe
│   │   │   │   └── Ex3_11.vshost.exe.manifest
│   │   │   ├── Ex3_11.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_11.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_11.exe
│   │   │   │   └── Ex3_11.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_11.sln
│   │   └── Ex3_11.suo
│   ├── Ex3_12
│   │   ├── Ex3_12
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_12.exe
│   │   │   │   ├── Ex3_12.pdb
│   │   │   │   ├── Ex3_12.vshost.exe
│   │   │   │   └── Ex3_12.vshost.exe.manifest
│   │   │   ├── Ex3_12.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_12.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_12.exe
│   │   │   │   └── Ex3_12.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_12.sln
│   │   └── Ex3_12.suo
│   ├── Ex3_13
│   │   ├── Ex3_13
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_13.exe
│   │   │   │   ├── Ex3_13.pdb
│   │   │   │   ├── Ex3_13.vshost.exe
│   │   │   │   └── Ex3_13.vshost.exe.manifest
│   │   │   ├── Ex3_13.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_13.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_13.exe
│   │   │   │   └── Ex3_13.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_13.sln
│   │   └── Ex3_13.suo
│   ├── Ex3_14
│   │   ├── Ex3_14
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_14.exe
│   │   │   │   ├── Ex3_14.pdb
│   │   │   │   ├── Ex3_14.vshost.exe
│   │   │   │   └── Ex3_14.vshost.exe.manifest
│   │   │   ├── Ex3_14.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_14.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_14.exe
│   │   │   │   └── Ex3_14.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_14.sln
│   │   └── Ex3_14.suo
│   ├── Ex3_15
│   │   ├── Ex3_15
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_15.exe
│   │   │   │   ├── Ex3_15.pdb
│   │   │   │   ├── Ex3_15.vshost.exe
│   │   │   │   └── Ex3_15.vshost.exe.manifest
│   │   │   ├── Ex3_15.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_15.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_15.exe
│   │   │   │   └── Ex3_15.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_15.sln
│   │   └── Ex3_15.suo
│   ├── Ex3_16
│   │   ├── Ex3_16
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_16.exe
│   │   │   │   ├── Ex3_16.pdb
│   │   │   │   ├── Ex3_16.vshost.exe
│   │   │   │   └── Ex3_16.vshost.exe.manifest
│   │   │   ├── Ex3_16.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_16.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_16.exe
│   │   │   │   └── Ex3_16.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_16.sln
│   │   └── Ex3_16.suo
│   ├── Ex3_17
│   │   ├── Ex3_17
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_17.exe
│   │   │   │   ├── Ex3_17.pdb
│   │   │   │   ├── Ex3_17.vshost.exe
│   │   │   │   └── Ex3_17.vshost.exe.manifest
│   │   │   ├── Ex3_17.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_17.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_17.exe
│   │   │   │   └── Ex3_17.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_17.sln
│   │   └── Ex3_17.suo
│   ├── Ex3_18
│   │   ├── Ex3_18
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_18.exe
│   │   │   │   ├── Ex3_18.pdb
│   │   │   │   ├── Ex3_18.vshost.exe
│   │   │   │   └── Ex3_18.vshost.exe.manifest
│   │   │   ├── Ex3_18.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_18.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_18.exe
│   │   │   │   └── Ex3_18.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_18.sln
│   │   └── Ex3_18.suo
│   ├── Ex3_19
│   │   ├── Ex3_19
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_19.exe
│   │   │   │   ├── Ex3_19.pdb
│   │   │   │   ├── Ex3_19.vshost.exe
│   │   │   │   └── Ex3_19.vshost.exe.manifest
│   │   │   ├── Ex3_19.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_19.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_19.exe
│   │   │   │   └── Ex3_19.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_19.sln
│   │   └── Ex3_19.suo
│   ├── Ex3_2
│   │   ├── Ex3_2
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_2.vshost.exe
│   │   │   │   └── Ex3_2.vshost.exe.manifest
│   │   │   ├── Ex3_2.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_2.sln
│   │   └── Ex3_2.suo
│   ├── Ex3_20
│   │   ├── Ex3_20
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_20.exe
│   │   │   │   ├── Ex3_20.pdb
│   │   │   │   ├── Ex3_20.vshost.exe
│   │   │   │   └── Ex3_20.vshost.exe.manifest
│   │   │   ├── Ex3_20.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_20.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_20.exe
│   │   │   │   └── Ex3_20.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_20.sln
│   │   └── Ex3_20.suo
│   ├── Ex3_21
│   │   ├── Ex3_21
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_21.exe
│   │   │   │   ├── Ex3_21.pdb
│   │   │   │   ├── Ex3_21.vshost.exe
│   │   │   │   └── Ex3_21.vshost.exe.manifest
│   │   │   ├── Ex3_21.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_21.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_21.exe
│   │   │   │   └── Ex3_21.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_21.sln
│   │   └── Ex3_21.suo
│   ├── Ex3_22
│   │   ├── Ex3_22
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_22.exe
│   │   │   │   ├── Ex3_22.pdb
│   │   │   │   ├── Ex3_22.vshost.exe
│   │   │   │   └── Ex3_22.vshost.exe.manifest
│   │   │   ├── Ex3_22.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_22.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_22.exe
│   │   │   │   └── Ex3_22.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_22.sln
│   │   └── Ex3_22.suo
│   ├── Ex3_3
│   │   ├── Ex3_3
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_3.exe
│   │   │   │   ├── Ex3_3.pdb
│   │   │   │   ├── Ex3_3.vshost.exe
│   │   │   │   └── Ex3_3.vshost.exe.manifest
│   │   │   ├── Ex3_3.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_3.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_3.exe
│   │   │   │   └── Ex3_3.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_3.sln
│   │   └── Ex3_3.suo
│   ├── Ex3_4
│   │   ├── Ex3_4
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_4.vshost.exe
│   │   │   │   └── Ex3_4.vshost.exe.manifest
│   │   │   ├── Ex3_4.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   └── Ex3_4.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_4.sln
│   │   └── Ex3_4.suo
│   ├── Ex3_5
│   │   ├── Ex3_5
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_5.exe
│   │   │   │   ├── Ex3_5.pdb
│   │   │   │   ├── Ex3_5.vshost.exe
│   │   │   │   └── Ex3_5.vshost.exe.manifest
│   │   │   ├── Ex3_5.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_5.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_5.exe
│   │   │   │   └── Ex3_5.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_5.sln
│   │   └── Ex3_5.suo
│   ├── Ex3_6
│   │   ├── Ex3_6
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_6.exe
│   │   │   │   ├── Ex3_6.pdb
│   │   │   │   ├── Ex3_6.vshost.exe
│   │   │   │   └── Ex3_6.vshost.exe.manifest
│   │   │   ├── Ex3_6.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_6.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_6.exe
│   │   │   │   └── Ex3_6.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_6.sln
│   │   └── Ex3_6.suo
│   ├── Ex3_7
│   │   ├── Ex3_7
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_7.exe
│   │   │   │   ├── Ex3_7.pdb
│   │   │   │   ├── Ex3_7.vshost.exe
│   │   │   │   └── Ex3_7.vshost.exe.manifest
│   │   │   ├── Ex3_7.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_7.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_7.exe
│   │   │   │   └── Ex3_7.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_7.sln
│   │   └── Ex3_7.suo
│   ├── Ex3_8
│   │   ├── Ex3_8
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex3_8.exe
│   │   │   │   ├── Ex3_8.pdb
│   │   │   │   ├── Ex3_8.vshost.exe
│   │   │   │   └── Ex3_8.vshost.exe.manifest
│   │   │   ├── Ex3_8.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex3_8.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex3_8.exe
│   │   │   │   └── Ex3_8.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex3_8.sln
│   │   └── Ex3_8.suo
│   └── Ex3_9
│   ├── Ex3_9
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Ex3_9.exe
│   │   │   ├── Ex3_9.pdb
│   │   │   ├── Ex3_9.vshost.exe
│   │   │   └── Ex3_9.vshost.exe.manifest
│   │   ├── Ex3_9.csproj
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Ex3_9.csproj.FileListAbsolute.txt
│   │   │   ├── Ex3_9.exe
│   │   │   └── Ex3_9.pdb
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Ex3_9.sln
│   └── Ex3_9.suo
├── Chapter4
│   ├── Ex4_1
│   │   ├── Ex4_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_1.exe
│   │   │   │   ├── Ex4_1.pdb
│   │   │   │   ├── Ex4_1.vshost.exe
│   │   │   │   └── Ex4_1.vshost.exe.manifest
│   │   │   ├── Ex4_1.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_1.exe
│   │   │   │   └── Ex4_1.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_1.sln
│   │   └── Ex4_1.suo
│   ├── Ex4_10
│   │   ├── Ex4_10
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_10.exe
│   │   │   │   ├── Ex4_10.pdb
│   │   │   │   ├── Ex4_10.vshost.exe
│   │   │   │   └── Ex4_10.vshost.exe.manifest
│   │   │   ├── Ex4_10.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_10.csproj.FileListAbsolute.txt
│   │   │   │   └── Ex4_10.exe
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_10.sln
│   │   └── Ex4_10.suo
│   ├── Ex4_11
│   │   ├── Ex4_11
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_11.exe
│   │   │   │   ├── Ex4_11.pdb
│   │   │   │   ├── Ex4_11.vshost.exe
│   │   │   │   └── Ex4_11.vshost.exe.manifest
│   │   │   ├── Ex4_11.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_11.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_11.exe
│   │   │   │   └── Ex4_11.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_11.sln
│   │   └── Ex4_11.suo
│   ├── Ex4_12
│   │   ├── Ex4_12
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_12.exe
│   │   │   │   ├── Ex4_12.pdb
│   │   │   │   ├── Ex4_12.vshost.exe
│   │   │   │   └── Ex4_12.vshost.exe.manifest
│   │   │   ├── Ex4_12.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_12.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_12.exe
│   │   │   │   └── Ex4_12.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_12.sln
│   │   └── Ex4_12.suo
│   ├── Ex4_13
│   │   ├── Ex4_13
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_13.exe
│   │   │   │   ├── Ex4_13.pdb
│   │   │   │   ├── Ex4_13.vshost.exe
│   │   │   │   └── Ex4_13.vshost.exe.manifest
│   │   │   ├── Ex4_13.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_13.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_13.exe
│   │   │   │   └── Ex4_13.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_13.sln
│   │   └── Ex4_13.suo
│   ├── Ex4_14
│   │   ├── Ex4_14
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_14.exe
│   │   │   │   ├── Ex4_14.pdb
│   │   │   │   ├── Ex4_14.vshost.exe
│   │   │   │   └── Ex4_14.vshost.exe.manifest
│   │   │   ├── Ex4_14.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_14.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_14.exe
│   │   │   │   └── Ex4_14.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_14.sln
│   │   └── Ex4_14.suo
│   ├── Ex4_15
│   │   ├── Ex4_15
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_15.exe
│   │   │   │   ├── Ex4_15.pdb
│   │   │   │   ├── Ex4_15.vshost.exe
│   │   │   │   └── Ex4_15.vshost.exe.manifest
│   │   │   ├── Ex4_15.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_15.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_15.exe
│   │   │   │   └── Ex4_15.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_15.sln
│   │   └── Ex4_15.suo
│   ├── Ex4_16
│   │   ├── Ex4_16
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_16.exe
│   │   │   │   ├── Ex4_16.pdb
│   │   │   │   ├── Ex4_16.vshost.exe
│   │   │   │   └── Ex4_16.vshost.exe.manifest
│   │   │   ├── Ex4_16.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_16.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_16.exe
│   │   │   │   └── Ex4_16.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_16.sln
│   │   └── Ex4_16.suo
│   ├── Ex4_17
│   │   ├── Ex4_17
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_17.exe
│   │   │   │   ├── Ex4_17.pdb
│   │   │   │   ├── Ex4_17.vshost.exe
│   │   │   │   └── Ex4_17.vshost.exe.manifest
│   │   │   ├── Ex4_17.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_17.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_17.exe
│   │   │   │   └── Ex4_17.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_17.sln
│   │   └── Ex4_17.suo
│   ├── Ex4_18
│   │   ├── Ex4_18
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_18.exe
│   │   │   │   ├── Ex4_18.pdb
│   │   │   │   ├── Ex4_18.vshost.exe
│   │   │   │   └── Ex4_18.vshost.exe.manifest
│   │   │   ├── Ex4_18.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_18.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_18.exe
│   │   │   │   └── Ex4_18.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_18.sln
│   │   └── Ex4_18.suo
│   ├── Ex4_19
│   │   ├── Ex4_19
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_19.exe
│   │   │   │   ├── Ex4_19.pdb
│   │   │   │   ├── Ex4_19.vshost.exe
│   │   │   │   └── Ex4_19.vshost.exe.manifest
│   │   │   ├── Ex4_19.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_19.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_19.exe
│   │   │   │   └── Ex4_19.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_19.sln
│   │   └── Ex4_19.suo
│   ├── Ex4_2
│   │   ├── Ex4_2
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_2.exe
│   │   │   │   ├── Ex4_2.pdb
│   │   │   │   ├── Ex4_2.vshost.exe
│   │   │   │   └── Ex4_2.vshost.exe.manifest
│   │   │   ├── Ex4_2.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_2.exe
│   │   │   │   └── Ex4_2.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_2.sln
│   │   └── Ex4_2.suo
│   ├── Ex4_20
│   │   ├── Ex4_20
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_20.exe
│   │   │   │   ├── Ex4_20.pdb
│   │   │   │   ├── Ex4_20.vshost.exe
│   │   │   │   └── Ex4_20.vshost.exe.manifest
│   │   │   ├── Ex4_20.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_20.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_20.exe
│   │   │   │   └── Ex4_20.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_20.sln
│   │   └── Ex4_20.suo
│   ├── Ex4_21
│   │   ├── Ex4_21
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_21.exe
│   │   │   │   ├── Ex4_21.pdb
│   │   │   │   ├── Ex4_21.vshost.exe
│   │   │   │   └── Ex4_21.vshost.exe.manifest
│   │   │   ├── Ex4_21.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_21.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_21.exe
│   │   │   │   └── Ex4_21.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_21.sln
│   │   └── Ex4_21.suo
│   ├── Ex4_22
│   │   ├── Ex4_22
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_22.exe
│   │   │   │   ├── Ex4_22.pdb
│   │   │   │   ├── Ex4_22.vshost.exe
│   │   │   │   └── Ex4_22.vshost.exe.manifest
│   │   │   ├── Ex4_22.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_22.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_22.exe
│   │   │   │   └── Ex4_22.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_22.sln
│   │   └── Ex4_22.suo
│   ├── Ex4_23
│   │   ├── Ex4_23
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_23.exe
│   │   │   │   ├── Ex4_23.pdb
│   │   │   │   ├── Ex4_23.vshost.exe
│   │   │   │   └── Ex4_23.vshost.exe.manifest
│   │   │   ├── Ex4_23.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_23.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_23.exe
│   │   │   │   └── Ex4_23.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_23.sln
│   │   └── Ex4_23.suo
│   ├── Ex4_24
│   │   ├── Ex4_24
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_24.exe
│   │   │   │   ├── Ex4_24.pdb
│   │   │   │   ├── Ex4_24.vshost.exe
│   │   │   │   └── Ex4_24.vshost.exe.manifest
│   │   │   ├── Ex4_24.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_24.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_24.exe
│   │   │   │   └── Ex4_24.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_24.sln
│   │   └── Ex4_24.suo
│   ├── Ex4_25
│   │   ├── Ex4_25
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_25.exe
│   │   │   │   ├── Ex4_25.pdb
│   │   │   │   ├── Ex4_25.vshost.exe
│   │   │   │   └── Ex4_25.vshost.exe.manifest
│   │   │   ├── Ex4_25.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_25.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_25.exe
│   │   │   │   └── Ex4_25.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_25.sln
│   │   └── Ex4_25.suo
│   ├── Ex4_26
│   │   ├── Ex4_26
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_26.exe
│   │   │   │   ├── Ex4_26.pdb
│   │   │   │   ├── Ex4_26.vshost.exe
│   │   │   │   └── Ex4_26.vshost.exe.manifest
│   │   │   ├── Ex4_26.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_26.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_26.exe
│   │   │   │   └── Ex4_26.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_26.sln
│   │   └── Ex4_26.suo
│   ├── Ex4_27
│   │   ├── Ex4_27
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_27.exe
│   │   │   │   ├── Ex4_27.pdb
│   │   │   │   ├── Ex4_27.vshost.exe
│   │   │   │   └── Ex4_27.vshost.exe.manifest
│   │   │   ├── Ex4_27.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_27.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_27.exe
│   │   │   │   └── Ex4_27.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_27.sln
│   │   └── Ex4_27.suo
│   ├── Ex4_28
│   │   ├── Ex4_28
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_28.exe
│   │   │   │   ├── Ex4_28.pdb
│   │   │   │   ├── Ex4_28.vshost.exe
│   │   │   │   └── Ex4_28.vshost.exe.manifest
│   │   │   ├── Ex4_28.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_28.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_28.exe
│   │   │   │   └── Ex4_28.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_28.sln
│   │   └── Ex4_28.suo
│   ├── Ex4_29
│   │   ├── Ex4_29
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_29.exe
│   │   │   │   ├── Ex4_29.pdb
│   │   │   │   ├── Ex4_29.vshost.exe
│   │   │   │   └── Ex4_29.vshost.exe.manifest
│   │   │   ├── Ex4_29.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_29.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_29.exe
│   │   │   │   └── Ex4_29.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_29.sln
│   │   └── Ex4_29.suo
│   ├── Ex4_3
│   │   ├── Ex4_3
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_3.exe
│   │   │   │   ├── Ex4_3.pdb
│   │   │   │   ├── Ex4_3.vshost.exe
│   │   │   │   └── Ex4_3.vshost.exe.manifest
│   │   │   ├── Ex4_3.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_3.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_3.exe
│   │   │   │   └── Ex4_3.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_3.sln
│   │   └── Ex4_3.suo
│   ├── Ex4_30
│   │   ├── Ex4_30
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_30.vshost.exe
│   │   │   │   └── Ex4_30.vshost.exe.manifest
│   │   │   ├── Ex4_30.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_30.sln
│   │   └── Ex4_30.suo
│   ├── Ex4_31
│   │   ├── Ex4_31
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_31.exe
│   │   │   │   ├── Ex4_31.pdb
│   │   │   │   ├── Ex4_31.vshost.exe
│   │   │   │   ├── Ex4_31.vshost.exe.manifest
│   │   │   │   ├── Function.dll
│   │   │   │   └── Function.pdb
│   │   │   ├── Ex4_31.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_31.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_31.exe
│   │   │   │   ├── Ex4_31.pdb
│   │   │   │   └── ResolveAssemblyReference.cache
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_31.sln
│   │   └── Ex4_31.suo
│   ├── Ex4_32
│   │   ├── Ex4_32
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_32.exe
│   │   │   │   ├── Ex4_32.pdb
│   │   │   │   ├── Ex4_32.vshost.exe
│   │   │   │   └── Ex4_32.vshost.exe.manifest
│   │   │   ├── Ex4_32.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_32.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_32.exe
│   │   │   │   └── Ex4_32.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_32.sln
│   │   └── Ex4_32.suo
│   ├── Ex4_4
│   │   ├── Ex4_4
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_4.exe
│   │   │   │   ├── Ex4_4.pdb
│   │   │   │   ├── Ex4_4.vshost.exe
│   │   │   │   └── Ex4_4.vshost.exe.manifest
│   │   │   ├── Ex4_4.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_4.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_4.exe
│   │   │   │   └── Ex4_4.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_4.sln
│   │   └── Ex4_4.suo
│   ├── Ex4_5
│   │   ├── Ex4_5
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_5.exe
│   │   │   │   ├── Ex4_5.pdb
│   │   │   │   ├── Ex4_5.vshost.exe
│   │   │   │   └── Ex4_5.vshost.exe.manifest
│   │   │   ├── Ex4_5.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_5.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_5.exe
│   │   │   │   └── Ex4_5.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_5.sln
│   │   └── Ex4_5.suo
│   ├── Ex4_6
│   │   ├── Ex4_6
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_6.exe
│   │   │   │   ├── Ex4_6.pdb
│   │   │   │   ├── Ex4_6.vshost.exe
│   │   │   │   └── Ex4_6.vshost.exe.manifest
│   │   │   ├── Ex4_6.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_6.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_6.exe
│   │   │   │   └── Ex4_6.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_6.sln
│   │   └── Ex4_6.suo
│   ├── Ex4_7
│   │   ├── Ex4_7
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_7.exe
│   │   │   │   ├── Ex4_7.pdb
│   │   │   │   ├── Ex4_7.vshost.exe
│   │   │   │   └── Ex4_7.vshost.exe.manifest
│   │   │   ├── Ex4_7.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_7.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_7.exe
│   │   │   │   ├── Ex4_7.pdb
│   │   │   │   └── ResolveAssemblyReference.cache
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_7.sln
│   │   └── Ex4_7.suo
│   ├── Ex4_8
│   │   ├── Ex4_8
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_8.exe
│   │   │   │   ├── Ex4_8.pdb
│   │   │   │   ├── Ex4_8.vshost.exe
│   │   │   │   └── Ex4_8.vshost.exe.manifest
│   │   │   ├── Ex4_8.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_8.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex4_8.exe
│   │   │   │   └── Ex4_8.pdb
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_8.sln
│   │   └── Ex4_8.suo
│   ├── Ex4_9
│   │   ├── Ex4_9
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex4_9.exe
│   │   │   │   ├── Ex4_9.pdb
│   │   │   │   ├── Ex4_9.vshost.exe
│   │   │   │   └── Ex4_9.vshost.exe.manifest
│   │   │   ├── Ex4_9.csproj
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex4_9.csproj.FileListAbsolute.txt
│   │   │   │   └── Ex4_9.exe
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Ex4_9.sln
│   │   └── Ex4_9.suo
│   └── Function
│   ├── Function
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Function.dll
│   │   │   └── Function.pdb
│   │   ├── Class1.cs
│   │   ├── Function.csproj
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Function.csproj.FileListAbsolute.txt
│   │   │   ├── Function.dll
│   │   │   └── Function.pdb
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Function.sln
│   └── Function.suo
├── Chapter5
│   ├── Ex5_1
│   │   ├── Ex5_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_1.exe
│   │   │   │   ├── Ex5_1.pdb
│   │   │   │   ├── Ex5_1.vshost.exe
│   │   │   │   └── Ex5_1.vshost.exe.manifest
│   │   │   ├── Ex5_1.csproj
│   │   │   ├── Ex5_1.csproj.user
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Form2.cs
│   │   │   ├── Form2.Designer.cs
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_1.exe
│   │   │   │   ├── Ex5_1.Form1.resources
│   │   │   │   ├── Ex5_1.pdb
│   │   │   │   ├── Ex5_1.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_1.sln
│   │   └── Ex5_1.suo
│   ├── Ex5_10
│   │   ├── Ex5_10
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_10.exe
│   │   │   │   ├── Ex5_10.pdb
│   │   │   │   ├── Ex5_10.vshost.exe
│   │   │   │   └── Ex5_10.vshost.exe.manifest
│   │   │   ├── Ex5_10.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_10.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_10.exe
│   │   │   │   ├── Ex5_10.Form1.resources
│   │   │   │   ├── Ex5_10.pdb
│   │   │   │   ├── Ex5_10.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   ├── GenerateResource.write.1.tlog
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Resources
│   │   │   └── qaohui3149965712653289279.jpg
│   │   ├── Ex5_10.sln
│   │   └── Ex5_10.suo
│   ├── Ex5_11
│   │   ├── Ex5_11
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_11.exe
│   │   │   │   ├── Ex5_11.pdb
│   │   │   │   ├── Ex5_11.vshost.exe
│   │   │   │   └── Ex5_11.vshost.exe.manifest
│   │   │   ├── Ex5_11.csproj
│   │   │   ├── frmStudentInfo.cs
│   │   │   ├── frmStudentInfo.Designer.cs
│   │   │   ├── frmStudentInfo.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_11.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_11.exe
│   │   │   │   ├── Ex5_11.frmStudentInfo.resources
│   │   │   │   ├── Ex5_11.pdb
│   │   │   │   ├── Ex5_11.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   ├── GenerateResource.write.1.tlog
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Resources
│   │   │   └── Img240516308.jpg
│   │   ├── Ex5_11.sln
│   │   └── Ex5_11.suo
│   ├── Ex5_12
│   │   ├── Ex5_12
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX5_7.exe
│   │   │   │   ├── EX5_7.pdb
│   │   │   │   ├── EX5_7.vshost.exe
│   │   │   │   └── EX5_7.vshost.exe.manifest
│   │   │   ├── Ex5_12.csproj
│   │   │   ├── Ex5_12.csproj.user
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_12.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_12.fmTxt.resources
│   │   │   │   ├── EX5_7.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX5_7.csproj.GenerateResource.Cache
│   │   │   │   ├── EX5_7.exe
│   │   │   │   ├── EX5_7.fmTxt.resources
│   │   │   │   ├── EX5_7.pdb
│   │   │   │   ├── EX5_7.Properties.Resources.resources
│   │   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   │   ├── GenerateResource-ResGen.read.5.tlog
│   │   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_12.sln
│   │   └── Ex5_12.suo
│   ├── Ex5_13
│   │   ├── Ex5_13
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_13.exe
│   │   │   │   ├── Ex5_13.pdb
│   │   │   │   ├── Ex5_13.vshost.exe
│   │   │   │   └── Ex5_13.vshost.exe.manifest
│   │   │   ├── Ex5_13.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_13.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_13.exe
│   │   │   │   ├── Ex5_13.Form1.resources
│   │   │   │   ├── Ex5_13.pdb
│   │   │   │   ├── Ex5_13.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_13.sln
│   │   └── Ex5_13.suo
│   ├── Ex5_14
│   │   ├── Ex5_14
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_14.exe
│   │   │   │   ├── Ex5_14.pdb
│   │   │   │   ├── Ex5_14.vshost.exe
│   │   │   │   └── Ex5_14.vshost.exe.manifest
│   │   │   ├── Ex5_14.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_14.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_14.exe
│   │   │   │   ├── Ex5_14.Form1.resources
│   │   │   │   ├── Ex5_14.pdb
│   │   │   │   ├── Ex5_14.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_14.sln
│   │   └── Ex5_14.suo
│   ├── Ex5_15
│   │   ├── Ex5_15
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_15.exe
│   │   │   │   ├── Ex5_15.pdb
│   │   │   │   ├── Ex5_15.vshost.exe
│   │   │   │   └── Ex5_15.vshost.exe.manifest
│   │   │   ├── Ex5_15.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_15.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_15.exe
│   │   │   │   ├── Ex5_15.Form1.resources
│   │   │   │   ├── Ex5_15.pdb
│   │   │   │   ├── Ex5_15.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_15.sln
│   │   └── Ex5_15.suo
│   ├── Ex5_16
│   │   ├── Ex5_16
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_16.exe
│   │   │   │   ├── Ex5_16.pdb
│   │   │   │   ├── Ex5_16.vshost.exe
│   │   │   │   └── Ex5_16.vshost.exe.manifest
│   │   │   ├── Ex5_16.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── MDIForm.cs
│   │   │   ├── MDIForm.Designer.cs
│   │   │   ├── MDIForm.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_12.fmTxt.resources
│   │   │   │   ├── Ex5_16.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_16.exe
│   │   │   │   ├── Ex5_16.MDIForm.resources
│   │   │   │   ├── Ex5_16.pdb
│   │   │   │   ├── Ex5_16.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_16.sln
│   │   └── Ex5_16.suo
│   ├── Ex5_2
│   │   ├── Ex5_2
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_2.exe
│   │   │   │   ├── Ex5_2.pdb
│   │   │   │   ├── Ex5_2.vshost.exe
│   │   │   │   └── Ex5_2.vshost.exe.manifest
│   │   │   ├── Ex5_2.csproj
│   │   │   ├── FormOpacity.cs
│   │   │   ├── FormOpacity.Designer.cs
│   │   │   ├── FormOpacity.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_2.exe
│   │   │   │   ├── Ex5_2.FormOpacity.resources
│   │   │   │   ├── Ex5_2.pdb
│   │   │   │   ├── Ex5_2.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_2.sln
│   │   └── Ex5_2.suo
│   ├── Ex5_4
│   │   ├── Ex5_4
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_4.exe
│   │   │   │   ├── Ex5_4.pdb
│   │   │   │   ├── Ex5_4.vshost.exe
│   │   │   │   └── Ex5_4.vshost.exe.manifest
│   │   │   ├── Ex5_4.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_4.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_4.exe
│   │   │   │   ├── Ex5_4.Form1.resources
│   │   │   │   ├── Ex5_4.pdb
│   │   │   │   ├── Ex5_4.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_4.sln
│   │   └── Ex5_4.suo
│   ├── Ex5_5
│   │   ├── Ex5_5
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_5.exe
│   │   │   │   ├── Ex5_5.pdb
│   │   │   │   ├── Ex5_5.vshost.exe
│   │   │   │   └── Ex5_5.vshost.exe.manifest
│   │   │   ├── Ex5_5.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_5.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_5.exe
│   │   │   │   ├── Ex5_5.Form1.resources
│   │   │   │   ├── Ex5_5.pdb
│   │   │   │   ├── Ex5_5.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_5.sln
│   │   └── Ex5_5.suo
│   ├── Ex5_6
│   │   ├── Ex5_6
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_6.exe
│   │   │   │   ├── Ex5_6.pdb
│   │   │   │   ├── Ex5_6.vshost.exe
│   │   │   │   └── Ex5_6.vshost.exe.manifest
│   │   │   ├── Ex5_6.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_6.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_6.exe
│   │   │   │   ├── Ex5_6.Form1.resources
│   │   │   │   ├── Ex5_6.pdb
│   │   │   │   ├── Ex5_6.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_6.sln
│   │   └── Ex5_6.suo
│   ├── Ex5_7
│   │   ├── Ex5_7
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_7.exe
│   │   │   │   ├── Ex5_7.pdb
│   │   │   │   ├── Ex5_7.vshost.exe
│   │   │   │   └── Ex5_7.vshost.exe.manifest
│   │   │   ├── Ex5_7.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_7.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_7.exe
│   │   │   │   ├── Ex5_7.Form1.resources
│   │   │   │   ├── Ex5_7.pdb
│   │   │   │   ├── Ex5_7.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_7.sln
│   │   └── Ex5_7.suo
│   ├── Ex5_8
│   │   ├── Ex5_8
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Ex5_8.exe
│   │   │   │   ├── Ex5_8.pdb
│   │   │   │   ├── Ex5_8.vshost.exe
│   │   │   │   └── Ex5_8.vshost.exe.manifest
│   │   │   ├── Ex5_8.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Ex5_8.csproj.FileListAbsolute.txt
│   │   │   │   ├── Ex5_8.exe
│   │   │   │   ├── Ex5_8.Form1.resources
│   │   │   │   ├── Ex5_8.pdb
│   │   │   │   ├── Ex5_8.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   └── GenerateResource.write.1.tlog
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex5_8.sln
│   │   └── Ex5_8.suo
│   └── Ex5_9
│   ├── Ex5_9
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Ex5_9.exe
│   │   │   ├── Ex5_9.pdb
│   │   │   ├── Ex5_9.vshost.exe
│   │   │   └── Ex5_9.vshost.exe.manifest
│   │   ├── Ex5_9.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Ex5_9.csproj.FileListAbsolute.txt
│   │   │   ├── Ex5_9.exe
│   │   │   ├── Ex5_9.Form1.resources
│   │   │   ├── Ex5_9.pdb
│   │   │   ├── Ex5_9.Properties.Resources.resources
│   │   │   ├── GenerateResource.read.1.tlog
│   │   │   └── GenerateResource.write.1.tlog
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Ex5_9.sln
│   └── Ex5_9.suo
├── Chapter6
│   ├── Ex6_1
│   │   ├── Ex6_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX6_1.exe
│   │   │   │   ├── EX6_1.pdb
│   │   │   │   ├── EX6_1.vshost.exe
│   │   │   │   └── EX6_1.vshost.exe.manifest
│   │   │   ├── EX6_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX6_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX6_1.csproj.GenerateResource.Cache
│   │   │   │   ├── EX6_1.exe
│   │   │   │   ├── EX6_1.Form1.resources
│   │   │   │   ├── EX6_1.pdb
│   │   │   │   ├── EX6_1.Properties.Resources.resources
│   │   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex6_1.sln
│   │   └── EX6_1.suo
│   ├── Ex6_2
│   │   ├── Ex6_2
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX6_2.exe
│   │   │   │   ├── EX6_2.pdb
│   │   │   │   ├── EX6_2.vshost.exe
│   │   │   │   └── EX6_2.vshost.exe.manifest
│   │   │   ├── EX6_2.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX6_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX6_2.csproj.GenerateResource.Cache
│   │   │   │   ├── EX6_2.exe
│   │   │   │   ├── EX6_2.Form1.resources
│   │   │   │   ├── EX6_2.pdb
│   │   │   │   ├── EX6_2.Properties.Resources.resources
│   │   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex6_2.sln
│   │   └── EX6_2.suo
│   ├── Ex6_3
│   │   ├── Ex6_3
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX6_3.exe
│   │   │   │   ├── EX6_3.pdb
│   │   │   │   ├── EX6_3.vshost.exe
│   │   │   │   └── EX6_3.vshost.exe.manifest
│   │   │   ├── EX6_3.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX6_3.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX6_3.csproj.GenerateResource.Cache
│   │   │   │   ├── EX6_3.exe
│   │   │   │   ├── EX6_3.Form1.resources
│   │   │   │   ├── EX6_3.pdb
│   │   │   │   ├── EX6_3.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Ex6_3.sln
│   │   └── EX6_3.suo
│   ├── Ex6_4
│   │   ├── Ex6_4
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX6_4.exe
│   │   │   │   ├── EX6_4.pdb
│   │   │   │   ├── EX6_4.vshost.exe
│   │   │   │   └── EX6_4.vshost.exe.manifest
│   │   │   ├── EX6_4.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX6_4.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX6_4.csproj.GenerateResource.Cache
│   │   │   │   ├── EX6_4.exe
│   │   │   │   ├── EX6_4.Form1.resources
│   │   │   │   ├── EX6_4.pdb
│   │   │   │   ├── EX6_4.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX6_4.sln
│   │   └── EX6_4.suo
│   ├── Ex6_5
│   │   ├── Ex6_5
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX6_5.exe
│   │   │   │   ├── EX6_5.pdb
│   │   │   │   ├── EX6_5.vshost.exe
│   │   │   │   └── EX6_5.vshost.exe.manifest
│   │   │   ├── EX6_5.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX6_5.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX6_5.csproj.GenerateResource.Cache
│   │   │   │   ├── EX6_5.exe
│   │   │   │   ├── EX6_5.Form1.resources
│   │   │   │   ├── EX6_5.pdb
│   │   │   │   ├── EX6_5.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX6_5.sln
│   │   └── EX6_5.suo
│   ├── Ex6_6
│   │   ├── Ex6_6
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX6_6.exe
│   │   │   │   ├── EX6_6.pdb
│   │   │   │   ├── EX6_6.vshost.exe
│   │   │   │   └── EX6_6.vshost.exe.manifest
│   │   │   ├── EX6_6.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX6_6.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX6_6.csproj.GenerateResource.Cache
│   │   │   │   ├── EX6_6.exe
│   │   │   │   ├── EX6_6.Form1.resources
│   │   │   │   ├── EX6_6.pdb
│   │   │   │   ├── EX6_6.Properties.Resources.resources
│   │   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX6_6.sln
│   │   └── EX6_6.suo
│   ├── Ex6_7
│   │   ├── Ex6_7
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX6_7.exe
│   │   │   │   ├── EX6_7.pdb
│   │   │   │   ├── EX6_7.vshost.exe
│   │   │   │   └── EX6_7.vshost.exe.manifest
│   │   │   ├── EX6_7.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX6_7.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX6_7.csproj.GenerateResource.Cache
│   │   │   │   ├── EX6_7.exe
│   │   │   │   ├── EX6_7.Form1.resources
│   │   │   │   ├── EX6_7.pdb
│   │   │   │   ├── EX6_7.Properties.Resources.resources
│   │   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX6_7.sln
│   │   └── EX6_7.suo
│   ├── Ex6_8
│   │   ├── Ex6_8
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX6_8.exe
│   │   │   │   ├── EX6_8.pdb
│   │   │   │   ├── EX6_8.vshost.exe
│   │   │   │   └── EX6_8.vshost.exe.manifest
│   │   │   ├── EX6_8.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX6_8.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX6_8.csproj.GenerateResource.Cache
│   │   │   │   ├── EX6_8.exe
│   │   │   │   ├── EX6_8.Form1.resources
│   │   │   │   ├── EX6_8.pdb
│   │   │   │   ├── EX6_8.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX6_8.sln
│   │   └── EX6_8.suo
│   └── Ex6_9
│   ├── Ex6_9
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── EX6_9.exe
│   │   │   ├── EX6_9.pdb
│   │   │   ├── EX6_9.vshost.exe
│   │   │   └── EX6_9.vshost.exe.manifest
│   │   ├── EX6_9.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── EX6_9.csproj.FileListAbsolute.txt
│   │   │   ├── EX6_9.csproj.GenerateResource.Cache
│   │   │   ├── EX6_9.exe
│   │   │   ├── EX6_9.Form1.resources
│   │   │   ├── EX6_9.pdb
│   │   │   ├── EX6_9.Properties.Resources.resources
│   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   ├── GenerateResource-ResGen.read.5.tlog
│   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── EX6_9.sln
│   └── EX6_9.suo
├── Chapter7
│   ├── Ex7_1
│   │   ├── Ex7_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX7_1.exe
│   │   │   │   ├── EX7_1.pdb
│   │   │   │   ├── EX7_1.vshost.exe
│   │   │   │   └── EX7_1.vshost.exe.manifest
│   │   │   ├── EX7_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX7_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX7_1.csproj.GenerateResource.Cache
│   │   │   │   ├── EX7_1.exe
│   │   │   │   ├── EX7_1.Form1.resources
│   │   │   │   ├── EX7_1.pdb
│   │   │   │   ├── EX7_1.Properties.Resources.resources
│   │   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX7_1.sln
│   │   └── EX7_1.suo
│   ├── Ex7_2
│   │   ├── Backup
│   │   │   ├── Ex7_2
│   │   │   │   ├── EX7_2.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── EX7_2.sln
│   │   │   └── EX7_2.suo
│   │   ├── Ex7_2
│   │   │   ├── abc.txt
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX7_2.exe
│   │   │   │   ├── EX7_2.pdb
│   │   │   │   ├── EX7_2.vshost.exe
│   │   │   │   └── EX7_2.vshost.exe.manifest
│   │   │   ├── EX7_2.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX7_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX7_2.csproj.GenerateResource.Cache
│   │   │   │   ├── EX7_2.exe
│   │   │   │   ├── EX7_2.Form1.resources
│   │   │   │   ├── EX7_2.pdb
│   │   │   │   ├── EX7_2.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX7_2.sln
│   │   ├── EX7_2.suo
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   ├── Ex7_3
│   │   ├── Ex7_3
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX7_3.exe
│   │   │   │   ├── EX7_3.pdb
│   │   │   │   ├── EX7_3.vshost.exe
│   │   │   │   └── EX7_3.vshost.exe.manifest
│   │   │   ├── EX7_3.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX7_3.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX7_3.csproj.GenerateResource.Cache
│   │   │   │   ├── EX7_3.exe
│   │   │   │   ├── EX7_3.Form1.resources
│   │   │   │   ├── EX7_3.pdb
│   │   │   │   ├── EX7_3.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX7_3.sln
│   │   └── EX7_3.suo
│   ├── Ex7_4
│   │   ├── Ex7_4
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX7_4.exe
│   │   │   │   ├── EX7_4.pdb
│   │   │   │   ├── EX7_4.vshost.exe
│   │   │   │   └── EX7_4.vshost.exe.manifest
│   │   │   ├── EX7_4.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX7_4.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX7_4.csproj.GenerateResource.Cache
│   │   │   │   ├── EX7_4.exe
│   │   │   │   ├── EX7_4.pdb
│   │   │   │   ├── EX7_4.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX7_4.sln
│   │   └── EX7_4.suo
│   └── Ex7_5
│   ├── Ex7_5
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── EX7_5.exe
│   │   │   ├── EX7_5.pdb
│   │   │   ├── EX7_5.vshost.exe
│   │   │   └── EX7_5.vshost.exe.manifest
│   │   ├── EX7_5.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── InputFileName.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── EX7_5.csproj.FileListAbsolute.txt
│   │   │   ├── EX7_5.csproj.GenerateResource.Cache
│   │   │   ├── EX7_5.exe
│   │   │   ├── EX7_5.Form1.resources
│   │   │   ├── EX7_5.pdb
│   │   │   ├── EX7_5.Properties.Resources.resources
│   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   ├── GenerateResource-ResGen.read.5.tlog
│   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── EX7_5.sln
│   └── EX7_5.suo
├── Chapter8
│   ├── Ex8_1.sql
│   ├── Ex8_2
│   │   ├── Ex8_2
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX8_2.exe
│   │   │   │   ├── EX8_2.pdb
│   │   │   │   ├── EX8_2.vshost.exe
│   │   │   │   └── EX8_2.vshost.exe.manifest
│   │   │   ├── EX8_2.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX8_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX8_2.csproj.GenerateResource.Cache
│   │   │   │   ├── EX8_2.exe
│   │   │   │   ├── EX8_2.Form1.resources
│   │   │   │   ├── EX8_2.pdb
│   │   │   │   ├── EX8_2.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX8_2.sln
│   │   └── EX8_2.suo
│   ├── Ex8_3
│   │   ├── Ex8_3
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX8_3.exe
│   │   │   │   ├── EX8_3.pdb
│   │   │   │   ├── EX8_3.vshost.exe
│   │   │   │   └── EX8_3.vshost.exe.manifest
│   │   │   ├── EX8_3.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX8_3.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX8_3.csproj.GenerateResource.Cache
│   │   │   │   ├── EX8_3.exe
│   │   │   │   ├── EX8_3.Form1.resources
│   │   │   │   ├── EX8_3.pdb
│   │   │   │   ├── EX8_3.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX8_3.sln
│   │   └── EX8_3.suo
│   ├── Ex8_4
│   │   ├── Ex8_4
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── EX8_4.exe
│   │   │   │   ├── EX8_4.pdb
│   │   │   │   ├── EX8_4.vshost.exe
│   │   │   │   └── EX8_4.vshost.exe.manifest
│   │   │   ├── EX8_4.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EX8_4.csproj.FileListAbsolute.txt
│   │   │   │   ├── EX8_4.csproj.GenerateResource.Cache
│   │   │   │   ├── EX8_4.exe
│   │   │   │   ├── EX8_4.Form1.resources
│   │   │   │   ├── EX8_4.pdb
│   │   │   │   ├── EX8_4.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── EX8_4.sln
│   │   └── EX8_4.suo
│   └── Ex8_5
│   ├── Ex8_5
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── EX8_5.exe
│   │   │   ├── EX8_5.pdb
│   │   │   ├── EX8_5.vshost.exe
│   │   │   └── EX8_5.vshost.exe.manifest
│   │   ├── EX8_5.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── EX8_5.csproj.FileListAbsolute.txt
│   │   │   ├── EX8_5.csproj.GenerateResource.Cache
│   │   │   ├── EX8_5.exe
│   │   │   ├── EX8_5.Form1.resources
│   │   │   ├── EX8_5.pdb
│   │   │   ├── EX8_5.Properties.Resources.resources
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── EX8_5.sln
│   └── EX8_5.suo
└── Chapter9
├── Ex9_1
│   ├── Ex9_1
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Ex9_1.exe
│   │   │   ├── Ex9_1.pdb
│   │   │   ├── Ex9_1.vshost.exe
│   │   │   └── Ex9_1.vshost.exe.manifest
│   │   ├── Ex9_1.csproj
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Ex9_1.csproj.FileListAbsolute.txt
│   │   │   ├── Ex9_1.exe
│   │   │   └── Ex9_1.pdb
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Ex9_1.sln
│   └── Ex9_1.suo
├── Ex9_2
│   ├── Ex9_2
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Ex9_2.exe
│   │   │   ├── Ex9_2.pdb
│   │   │   ├── Ex9_2.vshost.exe
│   │   │   └── Ex9_2.vshost.exe.manifest
│   │   ├── Ex9_2.csproj
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Ex9_2.csproj.FileListAbsolute.txt
│   │   │   ├── Ex9_2.exe
│   │   │   └── Ex9_2.pdb
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Ex9_2.sln
│   └── Ex9_2.suo
├── Ex9_3
│   ├── Ex9_3
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Ex9_3.exe
│   │   │   ├── Ex9_3.pdb
│   │   │   ├── Ex9_3.vshost.exe
│   │   │   └── Ex9_3.vshost.exe.manifest
│   │   ├── Ex9_3.csproj
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Ex9_3.csproj.FileListAbsolute.txt
│   │   │   ├── Ex9_3.exe
│   │   │   └── Ex9_3.pdb
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Ex9_3.sln
│   └── Ex9_3.suo
├── Ex9_4
│   ├── Ex9_4
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Ex9_4.exe
│   │   │   ├── Ex9_4.pdb
│   │   │   ├── Ex9_4.vshost.exe
│   │   │   └── Ex9_4.vshost.exe.manifest
│   │   ├── Ex9_4.csproj
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Ex9_4.csproj.FileListAbsolute.txt
│   │   │   ├── Ex9_4.exe
│   │   │   └── Ex9_4.pdb
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Ex9_4.sln
│   └── Ex9_4.suo
├── Ex9_5
│   ├── Ex9_5
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── EX9_3.exe
│   │   │   ├── EX9_3.pdb
│   │   │   ├── EX9_3.vshost.exe
│   │   │   └── EX9_3.vshost.exe.manifest
│   │   ├── Ex9_5.csproj
│   │   ├── Ex9_5.csproj.user
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── EX9_3.csproj.FileListAbsolute.txt
│   │   │   ├── EX9_3.csproj.GenerateResource.Cache
│   │   │   ├── EX9_3.exe
│   │   │   ├── EX9_3.pdb
│   │   │   ├── EX9_3.Properties.Resources.resources
│   │   │   ├── EX9_4.csproj.FileListAbsolute.txt
│   │   │   ├── EX9_4.csproj.GenerateResource.Cache
│   │   │   ├── Ex9_5.csproj.FileListAbsolute.txt
│   │   │   ├── Ex9_5.Form1.resources
│   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Ex9_5.sln
│   └── Ex9_5.suo
├── Ex9_6
│   ├── Ex9_6
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── EX9_5.exe
│   │   │   ├── EX9_5.pdb
│   │   │   ├── EX9_5.vshost.exe
│   │   │   └── EX9_5.vshost.exe.manifest
│   │   ├── Ex9_6.csproj
│   │   ├── Ex9_6.csproj.user
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── EX9_5.csproj.FileListAbsolute.txt
│   │   │   ├── EX9_5.exe
│   │   │   ├── EX9_5.pdb
│   │   │   └── Ex9_6.csproj.FileListAbsolute.txt
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── EX9_6.sln
│   └── EX9_6.suo
└── Ex9_7
├── Ex9_7
│   ├── bin
│   │   └── Debug
│   │   ├── EX9_6.exe
│   │   ├── EX9_6.pdb
│   │   ├── EX9_6.vshost.exe
│   │   └── EX9_6.vshost.exe.manifest
│   ├── EX9_6.csproj
│   ├── Form1.cs
│   ├── Form1.Designer.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── EX9_6.csproj.FileListAbsolute.txt
│   │   ├── EX9_6.csproj.GenerateResource.Cache
│   │   ├── EX9_6.exe
│   │   ├── EX9_6.Form1.resources
│   │   ├── EX9_6.pdb
│   │   ├── EX9_6.Properties.Resources.resources
│   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   └── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── Program.cs
│   └── Properties
│   ├── AssemblyInfo.cs
│   ├── Resources.Designer.cs
│   ├── Resources.resx
│   ├── Settings.Designer.cs
│   └── Settings.settings
├── Ex9_7.sln
└── Ex9_7.suo

984 directories, 2017 files

标签:

实例下载地址

《C#程序设计教程第2版》配套源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警