在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#基础与案例开发详解

C#基础与案例开发详解

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:7.54M
  • 下载次数:14
  • 浏览次数:46
  • 发布时间:2023-10-27
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: C#基础 详解 案例 开发 基础

实例介绍

【实例简介】C#基础与案例开发详解 本书里的例子 代码.....

【实例截图】

from clipboard

【核心代码】

.
├── C#基础与案例开发详解(上)
│   └── C#基础与案例开发详解(上)
│       ├── Chapter2
│       │   └── onepaper
│       │       ├── onepaper
│       │       │   ├── App_Data
│       │       │   ├── Default.aspx
│       │       │   ├── Default.aspx.cs
│       │       │   ├── Default.aspx.designer.cs
│       │       │   ├── Properties
│       │       │   │   └── AssemblyInfo.cs
│       │       │   ├── Web.config
│       │       │   ├── bin
│       │       │   │   ├── onepaper.dll
│       │       │   │   └── onepaper.pdb
│       │       │   ├── obj
│       │       │   │   └── Debug
│       │       │   │       ├── TempPE
│       │       │   │       ├── onepaper.csproj.FileListAbsolute.txt
│       │       │   │       ├── onepaper.dll
│       │       │   │       └── onepaper.pdb
│       │       │   ├── onepaper.csproj
│       │       │   └── onepaper.csproj.user
│       │       ├── onepaper.sln
│       │       └── onepaper.suo
│       ├── Chapter3
│       │   ├── Boxingtest
│       │   │   ├── Boxingtest
│       │   │   │   ├── Boxingtest.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Boxingtest.exe
│       │   │   │   │       ├── Boxingtest.pdb
│       │   │   │   │       ├── Boxingtest.vshost.exe
│       │   │   │   │       └── Boxingtest.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Boxingtest.csproj.FileListAbsolute.txt
│       │   │   │           ├── Boxingtest.exe
│       │   │   │           ├── Boxingtest.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Boxingtest.sln
│       │   │   └── Boxingtest.suo
│       │   ├── UnBoxing_test
│       │   │   ├── UnBoxing_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── UnBoxing_test.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── UnBoxing_test.exe
│       │   │   │   │       ├── UnBoxing_test.pdb
│       │   │   │   │       ├── UnBoxing_test.vshost.exe
│       │   │   │   │       └── UnBoxing_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── UnBoxing_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── UnBoxing_test.exe
│       │   │   │           └── UnBoxing_test.pdb
│       │   │   ├── UnBoxing_test.sln
│       │   │   └── UnBoxing_test.suo
│       │   ├── bool
│       │   │   ├── bool
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── bool.exe
│       │   │   │   │       ├── bool.pdb
│       │   │   │   │       ├── bool.vshost.exe
│       │   │   │   │       └── bool.vshost.exe.manifest
│       │   │   │   ├── bool.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── bool.csproj.FileListAbsolute.txt
│       │   │   │           ├── bool.exe
│       │   │   │           └── bool.pdb
│       │   │   ├── bool.sln
│       │   │   └── bool.suo
│       │   ├── enumtest
│       │   │   ├── enumtest
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── enumtest.exe
│       │   │   │   │       ├── enumtest.pdb
│       │   │   │   │       ├── enumtest.vshost.exe
│       │   │   │   │       └── enumtest.vshost.exe.manifest
│       │   │   │   ├── enumtest.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── enumtest.csproj.FileListAbsolute.txt
│       │   │   │           ├── enumtest.exe
│       │   │   │           └── enumtest.pdb
│       │   │   ├── enumtest.sln
│       │   │   └── enumtest.suo
│       │   ├── floattest1
│       │   │   ├── floattest1
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── floattest1.exe
│       │   │   │   │       ├── floattest1.pdb
│       │   │   │   │       ├── floattest1.vshost.exe
│       │   │   │   │       └── floattest1.vshost.exe.manifest
│       │   │   │   ├── floattest1.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── floattest1.csproj.FileListAbsolute.txt
│       │   │   │           ├── floattest1.exe
│       │   │   │           └── floattest1.pdb
│       │   │   ├── floattest1.sln
│       │   │   └── floattest1.suo
│       │   ├── fuzhi_test
│       │   │   ├── fuzhi_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── fuzhi_test.exe
│       │   │   │   │       ├── fuzhi_test.pdb
│       │   │   │   │       ├── fuzhi_test.vshost.exe
│       │   │   │   │       └── fuzhi_test.vshost.exe.manifest
│       │   │   │   ├── fuzhi_test.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── fuzhi_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── fuzhi_test.exe
│       │   │   │           └── fuzhi_test.pdb
│       │   │   ├── fuzhi_test.sln
│       │   │   └── fuzhi_test.suo
│       │   ├── guanxi_test
│       │   │   ├── guanxi_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── guanxi_test.exe
│       │   │   │   │       ├── guanxi_test.pdb
│       │   │   │   │       ├── guanxi_test.vshost.exe
│       │   │   │   │       └── guanxi_test.vshost.exe.manifest
│       │   │   │   ├── guanxi_test.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── guanxi_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── guanxi_test.exe
│       │   │   │           └── guanxi_test.pdb
│       │   │   ├── guanxi_test.sln
│       │   │   └── guanxi_test.suo
│       │   ├── luoji_add_test
│       │   │   ├── luoji_add_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── luoji_add_test.exe
│       │   │   │   │       ├── luoji_add_test.pdb
│       │   │   │   │       ├── luoji_add_test.vshost.exe
│       │   │   │   │       └── luoji_add_test.vshost.exe.manifest
│       │   │   │   ├── luoji_add_test.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── luoji_add_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── luoji_add_test.exe
│       │   │   │           └── luoji_add_test.pdb
│       │   │   ├── luoji_add_test.sln
│       │   │   └── luoji_add_test.suo
│       │   ├── object_sample
│       │   │   ├── object_sample
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── object_sample.exe
│       │   │   │   │       ├── object_sample.pdb
│       │   │   │   │       ├── object_sample.vshost.exe
│       │   │   │   │       └── object_sample.vshost.exe.manifest
│       │   │   │   ├── obj
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── TempPE
│       │   │   │   │       ├── object_sample.csproj.FileListAbsolute.txt
│       │   │   │   │       ├── object_sample.exe
│       │   │   │   │       └── object_sample.pdb
│       │   │   │   └── object_sample.csproj
│       │   │   ├── object_sample.sln
│       │   │   └── object_sample.suo
│       │   ├── tiaojian_test
│       │   │   ├── tiaojian_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── tiaojian_test.exe
│       │   │   │   │       ├── tiaojian_test.pdb
│       │   │   │   │       ├── tiaojian_test.vshost.exe
│       │   │   │   │       └── tiaojian_test.vshost.exe.manifest
│       │   │   │   ├── obj
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── TempPE
│       │   │   │   │       ├── tiaojian_test.csproj.FileListAbsolute.txt
│       │   │   │   │       ├── tiaojian_test.exe
│       │   │   │   │       └── tiaojian_test.pdb
│       │   │   │   └── tiaojian_test.csproj
│       │   │   ├── tiaojian_test.sln
│       │   │   └── tiaojian_test.suo
│       │   ├── weiyunsuan_test
│       │   │   ├── weiyunsuan_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── weiyunsuan_test.exe
│       │   │   │   │       ├── weiyunsuan_test.pdb
│       │   │   │   │       ├── weiyunsuan_test.vshost.exe
│       │   │   │   │       └── weiyunsuan_test.vshost.exe.manifest
│       │   │   │   ├── obj
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── TempPE
│       │   │   │   │       ├── weiyunsuan_test.csproj.FileListAbsolute.txt
│       │   │   │   │       ├── weiyunsuan_test.exe
│       │   │   │   │       └── weiyunsuan_test.pdb
│       │   │   │   └── weiyunsuan_test.csproj
│       │   │   ├── weiyunsuan_test.sln
│       │   │   └── weiyunsuan_test.suo
│       │   └── yunsuanfu1_test
│       │       ├── yunsuanfu1_test
│       │       │   ├── Program.cs
│       │       │   ├── Properties
│       │       │   │   └── AssemblyInfo.cs
│       │       │   ├── bin
│       │       │   │   └── Debug
│       │       │   │       ├── yunsuanfu1_test.exe
│       │       │   │       ├── yunsuanfu1_test.pdb
│       │       │   │       ├── yunsuanfu1_test.vshost.exe
│       │       │   │       └── yunsuanfu1_test.vshost.exe.manifest
│       │       │   ├── obj
│       │       │   │   └── Debug
│       │       │   │       ├── TempPE
│       │       │   │       ├── yunsuanfu1_test.csproj.FileListAbsolute.txt
│       │       │   │       ├── yunsuanfu1_test.exe
│       │       │   │       └── yunsuanfu1_test.pdb
│       │       │   └── yunsuanfu1_test.csproj
│       │       ├── yunsuanfu1_test.sln
│       │       └── yunsuanfu1_test.suo
│       ├── Chapter4
│       │   ├── ConsoleApplication1
│       │   │   ├── ConsoleApplication1
│       │   │   │   ├── ConsoleApplication1.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── ConsoleApplication1.exe
│       │   │   │   │       ├── ConsoleApplication1.pdb
│       │   │   │   │       ├── ConsoleApplication1.vshost.exe
│       │   │   │   │       └── ConsoleApplication1.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── ConsoleApplication1.csproj.FileListAbsolute.txt
│       │   │   │           ├── ConsoleApplication1.exe
│       │   │   │           ├── ConsoleApplication1.pdb
│       │   │   │           └── TempPE
│       │   │   ├── ConsoleApplication1.sln
│       │   │   └── ConsoleApplication1.suo
│       │   ├── MethodExample
│       │   │   ├── MethodExample
│       │   │   │   ├── MethodExample.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── MethodExample.exe
│       │   │   │   │       ├── MethodExample.pdb
│       │   │   │   │       ├── MethodExample.vshost.exe
│       │   │   │   │       └── MethodExample.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── MethodExample.csproj.FileListAbsolute.txt
│       │   │   │           ├── MethodExample.exe
│       │   │   │           ├── MethodExample.pdb
│       │   │   │           └── TempPE
│       │   │   ├── MethodExample.sln
│       │   │   └── MethodExample.suo
│       │   ├── MethodOverloadingExample
│       │   │   ├── MethodOverloadingExample
│       │   │   │   ├── MethodOverloadingExample.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── MethodOverloadingExample.exe
│       │   │   │   │       ├── MethodOverloadingExample.pdb
│       │   │   │   │       ├── MethodOverloadingExample.vshost.exe
│       │   │   │   │       └── MethodOverloadingExample.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── MethodOverloadingExample.csproj.FileListAbsolute.txt
│       │   │   │           ├── MethodOverloadingExample.exe
│       │   │   │           ├── MethodOverloadingExample.pdb
│       │   │   │           └── TempPE
│       │   │   ├── MethodOverloadingExample.sln
│       │   │   └── MethodOverloadingExample.suo
│       │   ├── Operator_test
│       │   │   ├── Operator_test
│       │   │   │   ├── Operator_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Operator_test.exe
│       │   │   │   │       ├── Operator_test.pdb
│       │   │   │   │       ├── Operator_test.vshost.exe
│       │   │   │   │       └── Operator_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Operator_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Operator_test.exe
│       │   │   │           ├── Operator_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Operator_test.sln
│       │   │   └── Operator_test.suo
│       │   ├── ProperExample
│       │   │   ├── ProperExample
│       │   │   │   ├── Program.cs
│       │   │   │   ├── ProperExample.csproj
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── ProperExample.exe
│       │   │   │   │       ├── ProperExample.pdb
│       │   │   │   │       ├── ProperExample.vshost.exe
│       │   │   │   │       └── ProperExample.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── ProperExample.csproj.FileListAbsolute.txt
│       │   │   │           ├── ProperExample.exe
│       │   │   │           ├── ProperExample.pdb
│       │   │   │           └── TempPE
│       │   │   ├── ProperExample.sln
│       │   │   └── ProperExample.suo
│       │   ├── SampleNamespace
│       │   │   ├── SampleNamespace
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── SampleNamespace.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── SampleNamespace.exe
│       │   │   │   │       ├── SampleNamespace.pdb
│       │   │   │   │       ├── SampleNamespace.vshost.exe
│       │   │   │   │       └── SampleNamespace.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── SampleNamespace.csproj.FileListAbsolute.txt
│       │   │   │           ├── SampleNamespace.exe
│       │   │   │           ├── SampleNamespace.pdb
│       │   │   │           └── TempPE
│       │   │   ├── SampleNamespace.sln
│       │   │   └── SampleNamespace.suo
│       │   ├── SortApplication
│       │   │   ├── Complex
│       │   │   │   ├── Complex.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Complex.exe
│       │   │   │   │       ├── Complex.pdb
│       │   │   │   │       ├── Complex.vshost.exe
│       │   │   │   │       └── Complex.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Complex.csproj.FileListAbsolute.txt
│       │   │   │           ├── Complex.exe
│       │   │   │           ├── Complex.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Complex.sln
│       │   │   └── Complex.suo
│       │   └── employee
│       │       ├── employee
│       │       │   ├── Program.cs
│       │       │   ├── Properties
│       │       │   │   └── AssemblyInfo.cs
│       │       │   ├── bin
│       │       │   │   └── Debug
│       │       │   │       ├── employee.exe
│       │       │   │       ├── employee.pdb
│       │       │   │       ├── employee.vshost.exe
│       │       │   │       └── employee.vshost.exe.manifest
│       │       │   ├── employee.csproj
│       │       │   └── obj
│       │       │       └── Debug
│       │       │           ├── TempPE
│       │       │           ├── employee.csproj.FileListAbsolute.txt
│       │       │           ├── employee.exe
│       │       │           └── employee.pdb
│       │       ├── employee.sln
│       │       └── employee.suo
│       ├── Chapter5
│       │   ├── BaseClass_test
│       │   │   ├── BaseClass_test
│       │   │   │   ├── BaseClass_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── BaseClass_test.exe
│       │   │   │   │       ├── BaseClass_test.pdb
│       │   │   │   │       ├── BaseClass_test.vshost.exe
│       │   │   │   │       └── BaseClass_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── BaseClass_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── BaseClass_test.exe
│       │   │   │           ├── BaseClass_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── BaseClass_test.sln
│       │   │   └── BaseClass_test.suo
│       │   ├── Duotai_test
│       │   │   ├── Duotai_test
│       │   │   │   ├── Duotai_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Duotai_test.exe
│       │   │   │   │       ├── Duotai_test.pdb
│       │   │   │   │       ├── Duotai_test.vshost.exe
│       │   │   │   │       └── Duotai_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Duotai_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Duotai_test.exe
│       │   │   │           ├── Duotai_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Duotai_test.sln
│       │   │   └── Duotai_test.suo
│       │   ├── ICloneable_test1
│       │   │   ├── ICloneable_test
│       │   │   │   ├── ICloneable_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── ICloneable_test.exe
│       │   │   │   │       ├── ICloneable_test.pdb
│       │   │   │   │       ├── ICloneable_test.vshost.exe
│       │   │   │   │       └── ICloneable_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── ICloneable_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── ICloneable_test.exe
│       │   │   │           ├── ICloneable_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── ICloneable_test.sln
│       │   │   └── ICloneable_test.suo
│       │   ├── ICloneable_test2
│       │   │   ├── ICloneable_test2
│       │   │   │   ├── ICloneable_test2.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── ICloneable_test2.exe
│       │   │   │   │       ├── ICloneable_test2.pdb
│       │   │   │   │       ├── ICloneable_test2.vshost.exe
│       │   │   │   │       └── ICloneable_test2.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── ICloneable_test2.csproj.FileListAbsolute.txt
│       │   │   │           ├── ICloneable_test2.exe
│       │   │   │           ├── ICloneable_test2.pdb
│       │   │   │           └── TempPE
│       │   │   ├── ICloneable_test2.sln
│       │   │   └── ICloneable_test2.suo
│       │   ├── InheritanceExample
│       │   │   ├── PersonClass
│       │   │   │   ├── InheritanceExample.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── PersonClass.exe
│       │   │   │   │       ├── PersonClass.pdb
│       │   │   │   │       ├── PersonClass.vshost.exe
│       │   │   │   │       └── PersonClass.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── InheritanceExample.csproj.FileListAbsolute.txt
│       │   │   │           ├── PersonClass.exe
│       │   │   │           ├── PersonClass.pdb
│       │   │   │           └── TempPE
│       │   │   ├── PersonClass.sln
│       │   │   └── PersonClass.suo
│       │   ├── InterfaceExample
│       │   │   ├── Interface_test2
│       │   │   │   ├── InterfaceExample.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Interface_test2.exe
│       │   │   │   │       ├── Interface_test2.pdb
│       │   │   │   │       ├── Interface_test2.vshost.exe
│       │   │   │   │       └── Interface_test2.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── InterfaceExample.csproj.FileListAbsolute.txt
│       │   │   │           ├── Interface_test2.csproj.FileListAbsolute.txt
│       │   │   │           ├── Interface_test2.exe
│       │   │   │           ├── Interface_test2.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Interface_test2.sln
│       │   │   └── Interface_test2.suo
│       │   ├── Interface_test
│       │   │   ├── Interface_test
│       │   │   │   ├── Interface_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Interface_test.exe
│       │   │   │   │       ├── Interface_test.pdb
│       │   │   │   │       ├── Interface_test.vshost.exe
│       │   │   │   │       └── Interface_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Interface_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Interface_test.exe
│       │   │   │           ├── Interface_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Interface_test.sln
│       │   │   └── Interface_test.suo
│       │   ├── abstract_test
│       │   │   ├── abstract_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── abstract_test.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── abstract_test.exe
│       │   │   │   │       ├── abstract_test.pdb
│       │   │   │   │       ├── abstract_test.vshost.exe
│       │   │   │   │       └── abstract_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── abstract_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── abstract_test.exe
│       │   │   │           └── abstract_test.pdb
│       │   │   ├── abstract_test.sln
│       │   │   └── abstract_test.suo
│       │   ├── new_test
│       │   │   ├── new_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── new_test.exe
│       │   │   │   │       ├── new_test.pdb
│       │   │   │   │       ├── new_test.vshost.exe
│       │   │   │   │       └── new_test.vshost.exe.manifest
│       │   │   │   ├── new_test.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── new_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── new_test.exe
│       │   │   │           └── new_test.pdb
│       │   │   ├── new_test.sln
│       │   │   └── new_test.suo
│       │   ├── override_test
│       │   │   ├── override_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── override_test.exe
│       │   │   │   │       ├── override_test.pdb
│       │   │   │   │       ├── override_test.vshost.exe
│       │   │   │   │       └── override_test.vshost.exe.manifest
│       │   │   │   ├── obj
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── TempPE
│       │   │   │   │       ├── override_test.csproj.FileListAbsolute.txt
│       │   │   │   │       ├── override_test.exe
│       │   │   │   │       └── override_test.pdb
│       │   │   │   └── override_test.csproj
│       │   │   ├── override_test.sln
│       │   │   └── override_test.suo
│       │   └── virtual_test
│       │       ├── virtual_test
│       │       │   ├── Program.cs
│       │       │   ├── Properties
│       │       │   │   └── AssemblyInfo.cs
│       │       │   ├── bin
│       │       │   │   └── Debug
│       │       │   │       ├── virtual_test.exe
│       │       │   │       ├── virtual_test.pdb
│       │       │   │       ├── virtual_test.vshost.exe
│       │       │   │       └── virtual_test.vshost.exe.manifest
│       │       │   ├── obj
│       │       │   │   └── Debug
│       │       │   │       ├── TempPE
│       │       │   │       ├── virtual_test.csproj.FileListAbsolute.txt
│       │       │   │       ├── virtual_test.exe
│       │       │   │       └── virtual_test.pdb
│       │       │   └── virtual_test.csproj
│       │       ├── virtual_test.sln
│       │       └── virtual_test.suo
│       ├── Chapter6
│       │   ├── ACSII_test
│       │   │   ├── ACSII_test
│       │   │   │   ├── ACSII_test.csproj
│       │   │   │   ├── ASCII_test.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── ACSII_test.exe
│       │   │   │   │       ├── ACSII_test.pdb
│       │   │   │   │       ├── ACSII_test.vshost.exe
│       │   │   │   │       └── ACSII_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── ACSII_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── ACSII_test.exe
│       │   │   │           ├── ACSII_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── ACSII_test.sln
│       │   │   └── ACSII_test.suo
│       │   ├── Break_test
│       │   │   ├── Break_test
│       │   │   │   ├── Break_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Break_test.exe
│       │   │   │   │       ├── Break_test.pdb
│       │   │   │   │       ├── Break_test.vshost.exe
│       │   │   │   │       └── Break_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Break_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Break_test.exe
│       │   │   │           ├── Break_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Break_test.sln
│       │   │   └── Break_test.suo
│       │   ├── Continue_test
│       │   │   ├── Continue_test
│       │   │   │   ├── Continue_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Continue_test.exe
│       │   │   │   │       ├── Continue_test.pdb
│       │   │   │   │       ├── Continue_test.vshost.exe
│       │   │   │   │       └── Continue_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Continue_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Continue_test.exe
│       │   │   │           ├── Continue_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Continue_test.sln
│       │   │   └── Continue_test.suo
│       │   ├── Foreach_test
│       │   │   ├── Foreach_test
│       │   │   │   ├── Foreach_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Foreach_test.exe
│       │   │   │   │       ├── Foreach_test.pdb
│       │   │   │   │       ├── Foreach_test.vshost.exe
│       │   │   │   │       └── Foreach_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Foreach_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Foreach_test.exe
│       │   │   │           ├── Foreach_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Foreach_test.sln
│       │   │   └── Foreach_test.suo
│       │   ├── Switch_test
│       │   │   ├── Switch_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── Switch_test.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Switch_test.exe
│       │   │   │   │       ├── Switch_test.pdb
│       │   │   │   │       ├── Switch_test.vshost.exe
│       │   │   │   │       └── Switch_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Switch_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Switch_test.exe
│       │   │   │           ├── Switch_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Switch_test.sln
│       │   │   └── Switch_test.suo
│       │   ├── Wage
│       │   │   ├── Wage
│       │   │   │   ├── Form1.Designer.cs
│       │   │   │   ├── Form1.cs
│       │   │   │   ├── Form1.resx
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   ├── AssemblyInfo.cs
│       │   │   │   │   ├── Resources.Designer.cs
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.cs
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── Wage.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Wage.exe
│       │   │   │   │       ├── Wage.pdb
│       │   │   │   │       ├── Wage.vshost.exe
│       │   │   │   │       └── Wage.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── Wage.Form1.resources
│       │   │   │           ├── Wage.Properties.Resources.resources
│       │   │   │           ├── Wage.csproj.FileListAbsolute.txt
│       │   │   │           ├── Wage.csproj.GenerateResource.Cache
│       │   │   │           ├── Wage.exe
│       │   │   │           └── Wage.pdb
│       │   │   ├── Wage.sln
│       │   │   └── Wage.suo
│       │   ├── catch-finally_test
│       │   │   ├── catch-finally_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── catch-finally_test.exe
│       │   │   │   │       ├── catch-finally_test.pdb
│       │   │   │   │       └── catch-finally_test.vshost.exe
│       │   │   │   ├── catch-finally_test.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── catch-finally_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── catch-finally_test.exe
│       │   │   │           └── catch-finally_test.pdb
│       │   │   ├── catch-finally_test.sln
│       │   │   └── catch-finally_test.suo
│       │   ├── do-while_test
│       │   │   ├── do-while_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── do-while_test.exe
│       │   │   │   │       ├── do-while_test.pdb
│       │   │   │   │       └── do-while_test.vshost.exe
│       │   │   │   ├── do-while_test.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── do-while_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── do-while_test.exe
│       │   │   │           └── do-while_test.pdb
│       │   │   ├── do-while_test.sln
│       │   │   └── do-while_test.suo
│       │   ├── else_if_test
│       │   │   ├── else_if_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── else_if_test.exe
│       │   │   │   │       ├── else_if_test.pdb
│       │   │   │   │       ├── else_if_test.vshost.exe
│       │   │   │   │       └── else_if_test.vshost.exe.manifest
│       │   │   │   ├── else_if_test.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── else_if_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── else_if_test.exe
│       │   │   │           └── else_if_test.pdb
│       │   │   ├── else_if_test.sln
│       │   │   └── else_if_test.suo
│       │   ├── for_test
│       │   │   ├── for_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── for_test.exe
│       │   │   │   │       ├── for_test.pdb
│       │   │   │   │       ├── for_test.vshost.exe
│       │   │   │   │       └── for_test.vshost.exe.manifest
│       │   │   │   ├── for_test.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── for_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── for_test.exe
│       │   │   │           └── for_test.pdb
│       │   │   ├── for_test.sln
│       │   │   └── for_test.suo
│       │   ├── goto_test
│       │   │   ├── goto_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── goto_test.exe
│       │   │   │   │       ├── goto_test.pdb
│       │   │   │   │       ├── goto_test.vshost.exe
│       │   │   │   │       └── goto_test.vshost.exe.manifest
│       │   │   │   ├── goto_test.csproj
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── goto_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── goto_test.exe
│       │   │   │           └── goto_test.pdb
│       │   │   ├── goto_test.sln
│       │   │   └── goto_test.suo
│       │   ├── return_test
│       │   │   ├── return_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── return_test.exe
│       │   │   │   │       ├── return_test.pdb
│       │   │   │   │       ├── return_test.vshost.exe
│       │   │   │   │       └── return_test.vshost.exe.manifest
│       │   │   │   ├── obj
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── TempPE
│       │   │   │   │       ├── return_test.csproj.FileListAbsolute.txt
│       │   │   │   │       ├── return_test.exe
│       │   │   │   │       └── return_test.pdb
│       │   │   │   └── return_test.csproj
│       │   │   ├── return_test.sln
│       │   │   └── return_test.suo
│       │   ├── throw_test
│       │   │   ├── throw_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── throw_test.exe
│       │   │   │   │       ├── throw_test.pdb
│       │   │   │   │       ├── throw_test.vshost.exe
│       │   │   │   │       └── throw_test.vshost.exe.manifest
│       │   │   │   ├── obj
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── TempPE
│       │   │   │   │       ├── throw_test.csproj.FileListAbsolute.txt
│       │   │   │   │       ├── throw_test.exe
│       │   │   │   │       └── throw_test.pdb
│       │   │   │   └── throw_test.csproj
│       │   │   ├── throw_test.sln
│       │   │   └── throw_test.suo
│       │   ├── try_test
│       │   │   ├── try_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── try_test.exe
│       │   │   │   │       ├── try_test.pdb
│       │   │   │   │       ├── try_test.vshost.exe
│       │   │   │   │       └── try_test.vshost.exe.manifest
│       │   │   │   ├── obj
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── TempPE
│       │   │   │   │       ├── try_test.csproj.FileListAbsolute.txt
│       │   │   │   │       ├── try_test.exe
│       │   │   │   │       └── try_test.pdb
│       │   │   │   └── try_test.csproj
│       │   │   ├── try_test.sln
│       │   │   └── try_test.suo
│       │   └── while_test
│       │       ├── while_test
│       │       │   ├── Program.cs
│       │       │   ├── Properties
│       │       │   │   └── AssemblyInfo.cs
│       │       │   ├── bin
│       │       │   │   └── Debug
│       │       │   │       ├── while_test.exe
│       │       │   │       ├── while_test.pdb
│       │       │   │       ├── while_test.vshost.exe
│       │       │   │       └── while_test.vshost.exe.manifest
│       │       │   ├── obj
│       │       │   │   └── Debug
│       │       │   │       ├── TempPE
│       │       │   │       ├── while_test.csproj.FileListAbsolute.txt
│       │       │   │       ├── while_test.exe
│       │       │   │       └── while_test.pdb
│       │       │   └── while_test.csproj
│       │       ├── while_test.sln
│       │       └── while_test.suo
│       ├── Chapter7
│       │   ├── ArrayExample
│       │   │   ├── ArrayExample
│       │   │   │   ├── ArrayExample.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── ArrayExample.exe
│       │   │   │   │       ├── ArrayExample.pdb
│       │   │   │   │       ├── ArrayExample.vshost.exe
│       │   │   │   │       └── ArrayExample.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── ArrayExample.csproj.FileListAbsolute.txt
│       │   │   │           ├── ArrayExample.exe
│       │   │   │           ├── ArrayExample.pdb
│       │   │   │           └── TempPE
│       │   │   ├── ArrayExample.sln
│       │   │   └── ArrayExample.suo
│       │   ├── ArrayList_add_remove
│       │   │   ├── ArrayList_add_remove
│       │   │   │   ├── ArrayList_add_remove.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── ArrayList_add_remove.exe
│       │   │   │   │       ├── ArrayList_add_remove.pdb
│       │   │   │   │       ├── ArrayList_add_remove.vshost.exe
│       │   │   │   │       └── ArrayList_add_remove.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── ArrayList_add_remove.csproj.FileListAbsolute.txt
│       │   │   │           ├── ArrayList_add_remove.exe
│       │   │   │           ├── ArrayList_add_remove.pdb
│       │   │   │           └── TempPE
│       │   │   ├── ArrayList_add_remove.sln
│       │   │   └── ArrayList_add_remove.suo
│       │   ├── ArrayList_test
│       │   │   ├── ArrayList_test
│       │   │   │   ├── ArrayList_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── ArrayList_test.exe
│       │   │   │   │       ├── ArrayList_test.pdb
│       │   │   │   │       ├── ArrayList_test.vshost.exe
│       │   │   │   │       └── ArrayList_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── ArrayList_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── ArrayList_test.exe
│       │   │   │           ├── ArrayList_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── ArrayList_test.sln
│       │   │   └── ArrayList_test.suo
│       │   ├── Array_test
│       │   │   ├── Array_test
│       │   │   │   ├── Array_test.cs
│       │   │   │   ├── Array_test.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Array_test.exe
│       │   │   │   │       ├── Array_test.pdb
│       │   │   │   │       ├── Array_test.vshost.exe
│       │   │   │   │       └── Array_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Array_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Array_test.exe
│       │   │   │           ├── Array_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Array_test.sln
│       │   │   └── Array_test.suo
│       │   ├── Array_test1
│       │   │   ├── Array_test1
│       │   │   │   ├── Array_test1.cs
│       │   │   │   ├── Array_test1.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Array_test1.exe
│       │   │   │   │       ├── Array_test1.pdb
│       │   │   │   │       ├── Array_test1.vshost.exe
│       │   │   │   │       └── Array_test1.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Array_test1.csproj.FileListAbsolute.txt
│       │   │   │           ├── Array_test1.exe
│       │   │   │           ├── Array_test1.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Array_test1.sln
│       │   │   └── Array_test1.suo
│       │   ├── Hashtable_test
│       │   │   ├── Hashtable_test
│       │   │   │   ├── Hashtable_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Hashtable_test.exe
│       │   │   │   │       ├── Hashtable_test.pdb
│       │   │   │   │       ├── Hashtable_test.vshost.exe
│       │   │   │   │       └── Hashtable_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Hashtable_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Hashtable_test.exe
│       │   │   │           ├── Hashtable_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Hashtable_test.sln
│       │   │   └── Hashtable_test.suo
│       │   ├── Queue_test
│       │   │   ├── Queue_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── Queue_test.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Queue_test.exe
│       │   │   │   │       ├── Queue_test.pdb
│       │   │   │   │       ├── Queue_test.vshost.exe
│       │   │   │   │       └── Queue_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Queue_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Queue_test.exe
│       │   │   │           ├── Queue_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Queue_test.sln
│       │   │   └── Queue_test.suo
│       │   ├── SortedList_test
│       │   │   ├── SortedList_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── SortedList_test.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── SortedList_test.exe
│       │   │   │   │       ├── SortedList_test.pdb
│       │   │   │   │       ├── SortedList_test.vshost.exe
│       │   │   │   │       └── SortedList_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── SortedList_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── SortedList_test.exe
│       │   │   │           ├── SortedList_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── SortedList_test.sln
│       │   │   └── SortedList_test.suo
│       │   ├── Stack_test
│       │   │   ├── Stack_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── Stack_test.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Stack_test.exe
│       │   │   │   │       ├── Stack_test.pdb
│       │   │   │   │       ├── Stack_test.vshost.exe
│       │   │   │   │       └── Stack_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Stack_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── Stack_test.exe
│       │   │   │           ├── Stack_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Stack_test.sln
│       │   │   └── Stack_test.suo
│       │   ├── YHtriangle
│       │   │   ├── YHtriangle
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── YHtriangle.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── YHtriangle.exe
│       │   │   │   │       ├── YHtriangle.pdb
│       │   │   │   │       ├── YHtriangle.vshost.exe
│       │   │   │   │       └── YHtriangle.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── YHtriangle.csproj.FileListAbsolute.txt
│       │   │   │           ├── YHtriangle.exe
│       │   │   │           └── YHtriangle.pdb
│       │   │   ├── YHtriangle.sln
│       │   │   └── YHtriangle.suo
│       │   ├── bianli_test
│       │   │   ├── bianli_test
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bianli_test.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── bianli_test.exe
│       │   │   │   │       ├── bianli_test.pdb
│       │   │   │   │       ├── bianli_test.vshost.exe
│       │   │   │   │       └── bianli_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── TempPE
│       │   │   │           ├── bianli_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── bianli_test.exe
│       │   │   │           └── bianli_test.pdb
│       │   │   ├── bianli_test.sln
│       │   │   └── bianli_test.suo
│       │   └── paixu_test
│       │       ├── paixu_test
│       │       │   ├── Program.cs
│       │       │   ├── Properties
│       │       │   │   └── AssemblyInfo.cs
│       │       │   ├── bin
│       │       │   │   └── Debug
│       │       │   │       ├── paixu_test.exe
│       │       │   │       ├── paixu_test.pdb
│       │       │   │       ├── paixu_test.vshost.exe
│       │       │   │       └── paixu_test.vshost.exe.manifest
│       │       │   ├── obj
│       │       │   │   └── Debug
│       │       │   │       ├── TempPE
│       │       │   │       ├── paixu_test.csproj.FileListAbsolute.txt
│       │       │   │       ├── paixu_test.exe
│       │       │   │       └── paixu_test.pdb
│       │       │   └── paixu_test.csproj
│       │       ├── paixu_test.sln
│       │       └── paixu_test.suo
│       └── Chapter8
│           ├── Enum_test
│           │   ├── Enum_test
│           │   │   ├── Enum_test.csproj
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   └── AssemblyInfo.cs
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── Enum_test.exe
│           │   │   │       ├── Enum_test.pdb
│           │   │   │       ├── Enum_test.vshost.exe
│           │   │   │       └── Enum_test.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── Enum_test.csproj.FileListAbsolute.txt
│           │   │           ├── Enum_test.exe
│           │   │           ├── Enum_test.pdb
│           │   │           └── TempPE
│           │   ├── Enum_test.sln
│           │   └── Enum_test.suo
│           ├── Enum_zhuanhuan
│           │   ├── Enum_zhuanhuan
│           │   │   ├── Enum_zhuanhuan.csproj
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   └── AssemblyInfo.cs
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── Enum_zhuanhuan.exe
│           │   │   │       ├── Enum_zhuanhuan.pdb
│           │   │   │       ├── Enum_zhuanhuan.vshost.exe
│           │   │   │       └── Enum_zhuanhuan.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── Enum_zhuanhuan.csproj.FileListAbsolute.txt
│           │   │           ├── Enum_zhuanhuan.exe
│           │   │           ├── Enum_zhuanhuan.pdb
│           │   │           └── TempPE
│           │   ├── Enum_zhuanhuan.sln
│           │   └── Enum_zhuanhuan.suo
│           ├── enumExample
│           │   ├── enumExample
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   └── AssemblyInfo.cs
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── enumExample.exe
│           │   │   │       ├── enumExample.pdb
│           │   │   │       ├── enumExample.vshost.exe
│           │   │   │       └── enumExample.vshost.exe.manifest
│           │   │   ├── enumExample.csproj
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── TempPE
│           │   │           ├── enumExample.csproj.FileListAbsolute.txt
│           │   │           ├── enumExample.exe
│           │   │           └── enumExample.pdb
│           │   ├── enumExample.sln
│           │   └── enumExample.suo
│           ├── enum_test1
│           │   ├── enum_test1
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   └── AssemblyInfo.cs
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── enum_test1.exe
│           │   │   │       ├── enum_test1.pdb
│           │   │   │       ├── enum_test1.vshost.exe
│           │   │   │       └── enum_test1.vshost.exe.manifest
│           │   │   ├── enum_test1.csproj
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── TempPE
│           │   │           ├── enum_test1.csproj.FileListAbsolute.txt
│           │   │           ├── enum_test1.exe
│           │   │           └── enum_test1.pdb
│           │   ├── enum_test1.sln
│           │   └── enum_test1.suo
│           ├── enum_test2
│           │   ├── enum_test2
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   └── AssemblyInfo.cs
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── enum_test2.exe
│           │   │   │       ├── enum_test2.pdb
│           │   │   │       ├── enum_test2.vshost.exe
│           │   │   │       └── enum_test2.vshost.exe.manifest
│           │   │   ├── enum_test2.csproj
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── TempPE
│           │   │           ├── enum_test2.csproj.FileListAbsolute.txt
│           │   │           ├── enum_test2.exe
│           │   │           └── enum_test2.pdb
│           │   ├── enum_test2.sln
│           │   └── enum_test2.suo
│           ├── enum_test3
│           │   ├── enum_test3
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   └── AssemblyInfo.cs
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── enum_test3.exe
│           │   │   │       ├── enum_test3.pdb
│           │   │   │       ├── enum_test3.vshost.exe
│           │   │   │       └── enum_test3.vshost.exe.manifest
│           │   │   ├── enum_test3.csproj
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── TempPE
│           │   │           ├── enum_test3.csproj.FileListAbsolute.txt
│           │   │           ├── enum_test3.exe
│           │   │           └── enum_test3.pdb
│           │   ├── enum_test3.sln
│           │   └── enum_test3.suo
│           ├── structExample
│           │   ├── structExample
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   └── AssemblyInfo.cs
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── structExample.exe
│           │   │   │       ├── structExample.pdb
│           │   │   │       ├── structExample.vshost.exe
│           │   │   │       └── structExample.vshost.exe.manifest
│           │   │   ├── obj
│           │   │   │   └── Debug
│           │   │   │       ├── TempPE
│           │   │   │       ├── structExample.csproj.FileListAbsolute.txt
│           │   │   │       ├── structExample.exe
│           │   │   │       └── structExample.pdb
│           │   │   └── structExample.csproj
│           │   ├── structExample.sln
│           │   └── structExample.suo
│           └── struct_test
│               ├── struct_test
│               │   ├── Program.cs
│               │   ├── Properties
│               │   │   └── AssemblyInfo.cs
│               │   ├── bin
│               │   │   └── Debug
│               │   │       ├── struct_test.exe
│               │   │       ├── struct_test.pdb
│               │   │       ├── struct_test.vshost.exe
│               │   │       └── struct_test.vshost.exe.manifest
│               │   ├── obj
│               │   │   └── Debug
│               │   │       ├── TempPE
│               │   │       ├── struct_test.csproj.FileListAbsolute.txt
│               │   │       ├── struct_test.exe
│               │   │       └── struct_test.pdb
│               │   └── struct_test.csproj
│               ├── struct_test.sln
│               └── struct_test.suo
├── C#基础与案例开发详解(下)
│   └── C#基础与案例开发详解(下)
│       ├── Chapter10
│       │   ├── DelFile_test
│       │   │   ├── DelFile_test
│       │   │   │   ├── DelFile_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── DelFile_test.exe
│       │   │   │   │       ├── DelFile_test.pdb
│       │   │   │   │       ├── DelFile_test.vshost.exe
│       │   │   │   │       └── DelFile_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── DelFile_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── DelFile_test.exe
│       │   │   │           ├── DelFile_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── DelFile_test.sln
│       │   │   └── DelFile_test.suo
│       │   ├── FileCopy_test
│       │   │   ├── FileCopy_test
│       │   │   │   ├── FileCopy_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── FileCopy_test.exe
│       │   │   │   │       ├── FileCopy_test.pdb
│       │   │   │   │       ├── FileCopy_test.vshost.exe
│       │   │   │   │       └── FileCopy_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── FileCopy_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── FileCopy_test.exe
│       │   │   │           ├── FileCopy_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── FileCopy_test.sln
│       │   │   └── FileCopy_test.suo
│       │   ├── MoveFile_test
│       │   │   ├── MoveFile_test
│       │   │   │   ├── MoveFile_test.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   └── AssemblyInfo.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── MoveFile_test.exe
│       │   │   │   │       ├── MoveFile_test.pdb
│       │   │   │   │       ├── MoveFile_test.vshost.exe
│       │   │   │   │       └── MoveFile_test.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── MoveFile_test.csproj.FileListAbsolute.txt
│       │   │   │           ├── MoveFile_test.exe
│       │   │   │           ├── MoveFile_test.pdb
│       │   │   │           └── TempPE
│       │   │   ├── MoveFile_test.sln
│       │   │   └── MoveFile_test.suo
│       │   ├── readFileExample
│       │   │   ├── Project1
│       │   │   │   ├── CodeFile1.cs
│       │   │   │   ├── Project1.csproj
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── Project1.exe
│       │   │   │   │       ├── Project1.pdb
│       │   │   │   │       ├── Project1.vshost.exe
│       │   │   │   │       ├── Project1.vshost.exe.manifest
│       │   │   │   │       └── foot.dat
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── Project1.csproj.FileListAbsolute.txt
│       │   │   │           ├── Project1.exe
│       │   │   │           ├── Project1.pdb
│       │   │   │           └── TempPE
│       │   │   ├── Project1.sln
│       │   │   └── Project1.suo
│       │   └── writeFileExample
│       │       ├── writeFileExample
│       │       │   ├── bin
│       │       │   │   └── Debug
│       │       │   │       ├── foot.dat
│       │       │   │       ├── writeFileExample.exe
│       │       │   │       ├── writeFileExample.pdb
│       │       │   │       ├── writeFileExample.vshost.exe
│       │       │   │       └── writeFileExample.vshost.exe.manifest
│       │       │   ├── obj
│       │       │   │   └── Debug
│       │       │   │       ├── TempPE
│       │       │   │       ├── writeFileExample.csproj.FileListAbsolute.txt
│       │       │   │       ├── writeFileExample.exe
│       │       │   │       └── writeFileExample.pdb
│       │       │   ├── writeFileExample.cs
│       │       │   └── writeFileExample.csproj
│       │       ├── writeFileExample.sln
│       │       └── writeFileExample.suo
│       ├── Chapter11
│       │   ├── EditTableExample
│       │   │   ├── Database
│       │   │   │   ├── MyDataBase.mdf
│       │   │   │   └── MyDataBase_log.ldf
│       │   │   ├── EditTableExample
│       │   │   │   ├── EditTableExample.csproj
│       │   │   │   ├── Form1.Designer.cs
│       │   │   │   ├── Form1.cs
│       │   │   │   ├── Form1.resx
│       │   │   │   ├── MyDataBaseDataSet.Designer.cs
│       │   │   │   ├── MyDataBaseDataSet.xsc
│       │   │   │   ├── MyDataBaseDataSet.xsd
│       │   │   │   ├── MyDataBaseDataSet.xss
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   ├── AssemblyInfo.cs
│       │   │   │   │   ├── Resources.Designer.cs
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.cs
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── app.config
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── EditTableExample.exe
│       │   │   │   │       ├── EditTableExample.exe.config
│       │   │   │   │       ├── EditTableExample.pdb
│       │   │   │   │       ├── EditTableExample.vshost.exe
│       │   │   │   │       ├── EditTableExample.vshost.exe.config
│       │   │   │   │       └── EditTableExample.vshost.exe.manifest
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── EditTableExample.Form1.resources
│       │   │   │           ├── EditTableExample.Properties.Resources.resources
│       │   │   │           ├── EditTableExample.csproj.FileListAbsolute.txt
│       │   │   │           ├── EditTableExample.csproj.GenerateResource.Cache
│       │   │   │           ├── EditTableExample.exe
│       │   │   │           ├── EditTableExample.pdb
│       │   │   │           └── TempPE
│       │   │   │               └── MyDataBaseDataSet.Designer.cs.dll
│       │   │   ├── EditTableExample.sln
│       │   │   └── EditTableExample.suo
│       │   └── readme.txt
│       ├── Chapter12
│       │   └── ChatApplicationSLN
│       │       ├── ChatApplication
│       │       │   ├── ChatApplicationClient.csproj
│       │       │   ├── Program.cs
│       │       │   ├── Properties
│       │       │   │   ├── AssemblyInfo.cs
│       │       │   │   ├── Resources.Designer.cs
│       │       │   │   ├── Resources.resx
│       │       │   │   ├── Settings.Designer.cs
│       │       │   │   └── Settings.settings
│       │       │   ├── bin
│       │       │   │   └── Debug
│       │       │   │       ├── ChatApplication.exe
│       │       │   │       ├── ChatApplication.pdb
│       │       │   │       ├── ChatApplication.vshost.exe
│       │       │   │       └── ChatApplication.vshost.exe.manifest
│       │       │   ├── frmClientMain.Designer.cs
│       │       │   ├── frmClientMain.cs
│       │       │   ├── frmClientMain.resx
│       │       │   └── obj
│       │       │       └── Debug
│       │       │           ├── ChatApplication.Properties.Resources.resources
│       │       │           ├── ChatApplication.exe
│       │       │           ├── ChatApplication.frmClientMain.resources
│       │       │           ├── ChatApplication.pdb
│       │       │           ├── ChatApplicationClient.csproj.FileListAbsolute.txt
│       │       │           ├── ChatApplicationClient.csproj.GenerateResource.Cache
│       │       │           ├── Refactor
│       │       │           └── TempPE
│       │       ├── ChatApplicationSLN.sln
│       │       ├── ChatApplicationSLN.suo
│       │       ├── ChatApplicationServer
│       │       │   ├── ChatApplicationServer.csproj
│       │       │   ├── Program.cs
│       │       │   ├── Properties
│       │       │   │   ├── AssemblyInfo.cs
│       │       │   │   ├── Resources.Designer.cs
│       │       │   │   ├── Resources.resx
│       │       │   │   ├── Settings.Designer.cs
│       │       │   │   └── Settings.settings
│       │       │   ├── bin
│       │       │   │   └── Debug
│       │       │   │       ├── ChatApplicationServer.exe
│       │       │   │       ├── ChatApplicationServer.pdb
│       │       │   │       ├── ChatApplicationServer.vshost.exe
│       │       │   │       └── ChatApplicationServer.vshost.exe.manifest
│       │       │   ├── frmServerMain.Designer.cs
│       │       │   ├── frmServerMain.cs
│       │       │   ├── frmServerMain.resx
│       │       │   └── obj
│       │       │       └── Debug
│       │       │           ├── ChatApplicationServer.Properties.Resources.resources
│       │       │           ├── ChatApplicationServer.csproj.FileListAbsolute.txt
│       │       │           ├── ChatApplicationServer.csproj.GenerateResource.Cache
│       │       │           ├── ChatApplicationServer.exe
│       │       │           ├── ChatApplicationServer.frmServerMain.resources
│       │       │           ├── ChatApplicationServer.pdb
│       │       │           ├── Refactor
│       │       │           └── TempPE
│       │       └── ServerSetup
│       │           ├── Debug
│       │           ├── Release
│       │           └── ServerSetup.vdproj
│       ├── Chapter13
│       │   ├── LockScreen
│       │   │   ├── LockScreen
│       │   │   │   ├── LockScreen.csproj
│       │   │   │   ├── Program.cs
│       │   │   │   ├── Properties
│       │   │   │   │   ├── AssemblyInfo.cs
│       │   │   │   │   ├── Resources.Designer.cs
│       │   │   │   │   ├── Resources.resx
│       │   │   │   │   ├── Settings.Designer.cs
│       │   │   │   │   └── Settings.settings
│       │   │   │   ├── Win32API.cs
│       │   │   │   ├── bin
│       │   │   │   │   └── Debug
│       │   │   │   │       ├── LockScreen.exe
│       │   │   │   │       ├── LockScreen.pdb
│       │   │   │   │       ├── LockScreen.vshost.exe
│       │   │   │   │       ├── LockScreen.vshost.exe.manifest
│       │   │   │   │       ├── config.ini
│       │   │   │   │       └── default.jpg
│       │   │   │   ├── emo-2.ico
│       │   │   │   ├── frmDeploy.Designer.cs
│       │   │   │   ├── frmDeploy.cs
│       │   │   │   ├── frmDeploy.resx
│       │   │   │   ├── frmLockScreen.Designer.cs
│       │   │   │   ├── frmLockScreen.cs
│       │   │   │   ├── frmLockScreen.resx
│       │   │   │   ├── frmMain.Designer.cs
│       │   │   │   ├── frmMain.cs
│       │   │   │   ├── frmMain.resx
│       │   │   │   └── obj
│       │   │   │       └── Debug
│       │   │   │           ├── LockScreen.Properties.Resources.resources
│       │   │   │           ├── LockScreen.csproj.FileListAbsolute.txt
│       │   │   │           ├── LockScreen.csproj.GenerateResource.Cache
│       │   │   │           ├── LockScreen.exe
│       │   │   │           ├── LockScreen.frmDeploy.resources
│       │   │   │           ├── LockScreen.frmLockScreen.resources
│       │   │   │           ├── LockScreen.frmMain.resources
│       │   │   │           ├── LockScreen.pdb
│       │   │   │           ├── Refactor
│       │   │   │           └── TempPE
│       │   │   ├── LockScreen.sln
│       │   │   ├── LockScreen.suo
│       │   │   ├── LockScreenSetup
│       │   │   │   ├── Debug
│       │   │   │   │   ├── LockScreenSetup.msi
│       │   │   │   │   └── setup.exe
│       │   │   │   ├── LockScreenSetup.vdproj
│       │   │   │   └── Release
│       │   │   └── emo-2.ico
│       │   └── 警告!.txt
│       ├── Chapter14
│       │   ├── ScholRollSystem
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── ScholRollSystem.csproj
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── ScholRollDataBase.accdb
│       │   │   │       ├── ScholRollSystem.exe
│       │   │   │       ├── ScholRollSystem.pdb
│       │   │   │       ├── ScholRollSystem.vshost.exe
│       │   │   │       └── ScholRollSystem.vshost.exe.manifest
│       │   │   ├── frmAddClass.Designer.cs
│       │   │   ├── frmAddClass.cs
│       │   │   ├── frmAddClass.resx
│       │   │   ├── frmAddCourse.Designer.cs
│       │   │   ├── frmAddCourse.cs
│       │   │   ├── frmAddCourse.resx
│       │   │   ├── frmAddRole.Designer.cs
│       │   │   ├── frmAddRole.cs
│       │   │   ├── frmAddRole.resx
│       │   │   ├── frmAddScore.Designer.cs
│       │   │   ├── frmAddScore.cs
│       │   │   ├── frmAddScore.resx
│       │   │   ├── frmAddSpecialty.Designer.cs
│       │   │   ├── frmAddSpecialty.cs
│       │   │   ├── frmAddSpecialty.resx
│       │   │   ├── frmAddStudentInfo.Designer.cs
│       │   │   ├── frmAddStudentInfo.cs
│       │   │   ├── frmAddStudentInfo.resx
│       │   │   ├── frmAddUser.Designer.cs
│       │   │   ├── frmAddUser.cs
│       │   │   ├── frmAddUser.resx
│       │   │   ├── frmBrowseClass.Designer.cs
│       │   │   ├── frmBrowseClass.cs
│       │   │   ├── frmBrowseClass.resx
│       │   │   ├── frmBrowseCourse.Designer.cs
│       │   │   ├── frmBrowseCourse.cs
│       │   │   ├── frmBrowseCourse.resx
│       │   │   ├── frmBrowseScore.Designer.cs
│       │   │   ├── frmBrowseScore.cs
│       │   │   ├── frmBrowseScore.resx
│       │   │   ├── frmBrowseSpecialty.Designer.cs
│       │   │   ├── frmBrowseSpecialty.cs
│       │   │   ├── frmBrowseSpecialty.resx
│       │   │   ├── frmBrowseStudent.Designer.cs
│       │   │   ├── frmBrowseStudent.cs
│       │   │   ├── frmBrowseStudent.resx
│       │   │   ├── frmLogin.Designer.cs
│       │   │   ├── frmLogin.cs
│       │   │   ├── frmLogin.resx
│       │   │   ├── frmMain.Designer.cs
│       │   │   ├── frmMain.cs
│       │   │   ├── frmMain.resx
│       │   │   ├── frmQueryStudentScore.Designer.cs
│       │   │   ├── frmQueryStudentScore.cs
│       │   │   ├── frmQueryStudentScore.resx
│       │   │   ├── frmUpdateClass.Designer.cs
│       │   │   ├── frmUpdateClass.cs
│       │   │   ├── frmUpdateClass.resx
│       │   │   ├── frmUpdateCourse.Designer.cs
│       │   │   ├── frmUpdateCourse.cs
│       │   │   ├── frmUpdateCourse.resx
│       │   │   ├── frmUpdateScore.Designer.cs
│       │   │   ├── frmUpdateScore.cs
│       │   │   ├── frmUpdateScore.resx
│       │   │   ├── frmUpdateSpecialty.Designer.cs
│       │   │   ├── frmUpdateSpecialty.cs
│       │   │   ├── frmUpdateSpecialty.resx
│       │   │   ├── frmUpdateStudent.Designer.cs
│       │   │   ├── frmUpdateStudent.cs
│       │   │   ├── frmUpdateStudent.resx
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── Refactor
│       │   │           ├── ScholRollSystem.Properties.Resources.resources
│       │   │           ├── ScholRollSystem.csproj.FileListAbsolute.txt
│       │   │           ├── ScholRollSystem.csproj.GenerateResource.Cache
│       │   │           ├── ScholRollSystem.exe
│       │   │           ├── ScholRollSystem.frmAddClass.resources
│       │   │           ├── ScholRollSystem.frmAddCourse.resources
│       │   │           ├── ScholRollSystem.frmAddRole.resources
│       │   │           ├── ScholRollSystem.frmAddScore.resources
│       │   │           ├── ScholRollSystem.frmAddSpecialty.resources
│       │   │           ├── ScholRollSystem.frmAddStudentInfo.resources
│       │   │           ├── ScholRollSystem.frmAddUser.resources
│       │   │           ├── ScholRollSystem.frmBrowseClass.resources
│       │   │           ├── ScholRollSystem.frmBrowseCourse.resources
│       │   │           ├── ScholRollSystem.frmBrowseScore.resources
│       │   │           ├── ScholRollSystem.frmBrowseSpecialty.resources
│       │   │           ├── ScholRollSystem.frmBrowseStudent.resources
│       │   │           ├── ScholRollSystem.frmLogin.resources
│       │   │           ├── ScholRollSystem.frmMain.resources
│       │   │           ├── ScholRollSystem.frmQueryStudentScore.resources
│       │   │           ├── ScholRollSystem.frmUpdateClass.resources
│       │   │           ├── ScholRollSystem.frmUpdateCourse.resources
│       │   │           ├── ScholRollSystem.frmUpdateScore.resources
│       │   │           ├── ScholRollSystem.frmUpdateSpecialty.resources
│       │   │           ├── ScholRollSystem.frmUpdateStudent.resources
│       │   │           ├── ScholRollSystem.pdb
│       │   │           └── TempPE
│       │   ├── readme.txt
│       │   └── 学生学籍窡理篻緟.sln
│       ├── Chapter15
│       │   ├── BookManageSystem
│       │   │   ├── App.config
│       │   │   ├── BookManageSystem.csproj
│       │   │   ├── FormStatus.Designer.cs
│       │   │   ├── FormStatus.cs
│       │   │   ├── FormStatus.resx
│       │   │   ├── Program.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   ├── Resources.Designer.cs
│       │   │   │   ├── Resources.resx
│       │   │   │   ├── Settings.Designer.cs
│       │   │   │   └── Settings.settings
│       │   │   ├── Session.cs
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── App.config
│       │   │   │       ├── BookManageSystem.BLL.dll
│       │   │   │       ├── BookManageSystem.BLL.pdb
│       │   │   │       ├── BookManageSystem.Common.dll
│       │   │   │       ├── BookManageSystem.Common.pdb
│       │   │   │       ├── BookManageSystem.DAL.dll
│       │   │   │       ├── BookManageSystem.DAL.pdb
│       │   │   │       ├── BookManageSystem.Model.dll
│       │   │   │       ├── BookManageSystem.Model.pdb
│       │   │   │       ├── BookManageSystem.exe
│       │   │   │       ├── BookManageSystem.exe.config
│       │   │   │       ├── BookManageSystem.pdb
│       │   │   │       ├── BookManageSystem.vshost.exe
│       │   │   │       ├── BookManageSystem.vshost.exe.config
│       │   │   │       └── BookManageSystem.vshost.exe.manifest
│       │   │   ├── frmBookInfoAddOrUpdate.Designer.cs
│       │   │   ├── frmBookInfoAddOrUpdate.cs
│       │   │   ├── frmBookInfoAddOrUpdate.resx
│       │   │   ├── frmBookInfoManage.Designer.cs
│       │   │   ├── frmBookInfoManage.cs
│       │   │   ├── frmBookInfoManage.resx
│       │   │   ├── frmBookSortManage.Designer.cs
│       │   │   ├── frmBookSortManage.cs
│       │   │   ├── frmBookSortManage.resx
│       │   │   ├── frmBorrowReturnMana.Designer.cs
│       │   │   ├── frmBorrowReturnMana.cs
│       │   │   ├── frmBorrowReturnMana.resx
│       │   │   ├── frmLogin.Designer.cs
│       │   │   ├── frmLogin.cs
│       │   │   ├── frmLogin.resx
│       │   │   ├── frmMain.Designer.cs
│       │   │   ├── frmMain.cs
│       │   │   ├── frmMain.resx
│       │   │   ├── frmManagePannel.Designer.cs
│       │   │   ├── frmManagePannel.cs
│       │   │   ├── frmManagePannel.resx
│       │   │   ├── frmReaderAddOrUpdate.Designer.cs
│       │   │   ├── frmReaderAddOrUpdate.cs
│       │   │   ├── frmReaderAddOrUpdate.resx
│       │   │   ├── frmReaderManage.Designer.cs
│       │   │   ├── frmReaderManage.cs
│       │   │   ├── frmReaderManage.resx
│       │   │   ├── frmSystemInfoSearch.Designer.cs
│       │   │   ├── frmSystemInfoSearch.cs
│       │   │   ├── frmSystemInfoSearch.resx
│       │   │   ├── frmUserAddUpdate.Designer.cs
│       │   │   ├── frmUserAddUpdate.cs
│       │   │   ├── frmUserAddUpdate.resx
│       │   │   ├── frmUserPurviewManage.Designer.cs
│       │   │   ├── frmUserPurviewManage.cs
│       │   │   ├── frmUserPurviewManage.resx
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── BookManageSystem.FormStatus.resources
│       │   │           ├── BookManageSystem.Properties.Resources.resources
│       │   │           ├── BookManageSystem.csproj.FileListAbsolute.txt
│       │   │           ├── BookManageSystem.csproj.GenerateResource.Cache
│       │   │           ├── BookManageSystem.exe
│       │   │           ├── BookManageSystem.frmBookInfoAddOrUpdate.resources
│       │   │           ├── BookManageSystem.frmBookInfoManage.resources
│       │   │           ├── BookManageSystem.frmBookSortManage.resources
│       │   │           ├── BookManageSystem.frmBorrowReturnMana.resources
│       │   │           ├── BookManageSystem.frmLogin.resources
│       │   │           ├── BookManageSystem.frmMain.resources
│       │   │           ├── BookManageSystem.frmManagePannel.resources
│       │   │           ├── BookManageSystem.frmReaderAddOrUpdate.resources
│       │   │           ├── BookManageSystem.frmReaderManage.resources
│       │   │           ├── BookManageSystem.frmSystemInfoSearch.resources
│       │   │           ├── BookManageSystem.frmUserAddUpdate.resources
│       │   │           ├── BookManageSystem.frmUserPurviewManage.resources
│       │   │           ├── BookManageSystem.pdb
│       │   │           ├── Refactor
│       │   │           ├── ResolveAssemblyReference.cache
│       │   │           └── TempPE
│       │   ├── BookManageSystem.BLL
│       │   │   ├── BookManageSystem.BLL.csproj
│       │   │   ├── CtbBookInformationBLL.cs
│       │   │   ├── CtbBookSortBLL.cs
│       │   │   ├── CtbLendBLL.cs
│       │   │   ├── CtbReaderInformationBLL.cs
│       │   │   ├── CtbUserInformationBLL.cs
│       │   │   ├── Properties
│       │   │   │   └── AssemblyInfo.cs
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── BookManageSystem.BLL.dll
│       │   │   │       ├── BookManageSystem.BLL.pdb
│       │   │   │       ├── BookManageSystem.Common.dll
│       │   │   │       ├── BookManageSystem.Common.pdb
│       │   │   │       ├── BookManageSystem.DAL.dll
│       │   │   │       ├── BookManageSystem.DAL.pdb
│       │   │   │       ├── BookManageSystem.Model.dll
│       │   │   │       └── BookManageSystem.Model.pdb
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── BookManageSystem.BLL.csproj.FileListAbsolute.txt
│       │   │           ├── BookManageSystem.BLL.dll
│       │   │           ├── BookManageSystem.BLL.pdb
│       │   │           ├── Refactor
│       │   │           ├── ResolveAssemblyReference.cache
│       │   │           └── TempPE
│       │   ├── BookManageSystem.Common
│       │   │   ├── BookManageSystem.Common.csproj
│       │   │   ├── CCharToBool.cs
│       │   │   ├── DbHelperSQL.cs
│       │   │   ├── Properties
│       │   │   │   └── AssemblyInfo.cs
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── BookManageSystem.Common.dll
│       │   │   │       └── BookManageSystem.Common.pdb
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── BookManageSystem.Common.csproj.FileListAbsolute.txt
│       │   │           ├── BookManageSystem.Common.dll
│       │   │           ├── BookManageSystem.Common.pdb
│       │   │           ├── Refactor
│       │   │           └── TempPE
│       │   ├── BookManageSystem.DAL
│       │   │   ├── BookManageSystem.DAL.csproj
│       │   │   ├── CtbBookInformationDAL.cs
│       │   │   ├── CtbBookSortDAL.cs
│       │   │   ├── CtbLendDAL.cs
│       │   │   ├── CtbReaderInformationDAL.cs
│       │   │   ├── CtbUserInformationDAL.cs
│       │   │   ├── Properties
│       │   │   │   └── AssemblyInfo.cs
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── BookManageSystem.Common.dll
│       │   │   │       ├── BookManageSystem.Common.pdb
│       │   │   │       ├── BookManageSystem.DAL.dll
│       │   │   │       ├── BookManageSystem.DAL.pdb
│       │   │   │       ├── BookManageSystem.Model.dll
│       │   │   │       └── BookManageSystem.Model.pdb
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── BookManageSystem.DAL.csproj.FileListAbsolute.txt
│       │   │           ├── BookManageSystem.DAL.dll
│       │   │           ├── BookManageSystem.DAL.pdb
│       │   │           ├── Refactor
│       │   │           ├── ResolveAssemblyReference.cache
│       │   │           └── TempPE
│       │   ├── BookManageSystem.Model
│       │   │   ├── BookManageSystem.Model.csproj
│       │   │   ├── CtbBookInformation.cs
│       │   │   ├── CtbBookSort.cs
│       │   │   ├── CtbLend.cs
│       │   │   ├── CtbReaderInformation.cs
│       │   │   ├── CtbUserInformation.cs
│       │   │   ├── Properties
│       │   │   │   └── AssemblyInfo.cs
│       │   │   ├── bin
│       │   │   │   └── Debug
│       │   │   │       ├── BookManageSystem.Model.dll
│       │   │   │       └── BookManageSystem.Model.pdb
│       │   │   └── obj
│       │   │       └── Debug
│       │   │           ├── BookManageSystem.Model.csproj.FileListAbsolute.txt
│       │   │           ├── BookManageSystem.Model.dll
│       │   │           ├── BookManageSystem.Model.pdb
│       │   │           ├── Refactor
│       │   │           └── TempPE
│       │   ├── DATABASE
│       │   │   ├── dbBookInformation.mdf
│       │   │   └── dbBookInformation_log.ldf
│       │   ├── 嗾书窡理仡息篻緟.sln
│       │   ├── 嗾书窡理仡息篻緟.suo
│       │   └── (嗾书窡理仡息篻緟)readme.txt
│       └── Chapter9
│           ├── Button_test
│           │   ├── Button_test
│           │   │   ├── Button_test.csproj
│           │   │   ├── Form1.Designer.cs
│           │   │   ├── Form1.cs
│           │   │   ├── Form1.resx
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   ├── AssemblyInfo.cs
│           │   │   │   ├── Resources.Designer.cs
│           │   │   │   ├── Resources.resx
│           │   │   │   ├── Settings.Designer.cs
│           │   │   │   └── Settings.settings
│           │   │   ├── Resources
│           │   │   │   ├── English.gif
│           │   │   │   ├── chinese.gif
│           │   │   │   ├── icon_07.gif
│           │   │   │   └── icon_09.gif
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── Button_test.exe
│           │   │   │       ├── Button_test.pdb
│           │   │   │       ├── Button_test.vshost.exe
│           │   │   │       └── Button_test.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── Button_test.Form1.resources
│           │   │           ├── Button_test.Properties.Resources.resources
│           │   │           ├── Button_test.csproj.FileListAbsolute.txt
│           │   │           ├── Button_test.csproj.GenerateResource.Cache
│           │   │           ├── Button_test.exe
│           │   │           ├── Button_test.pdb
│           │   │           ├── Refactor
│           │   │           └── TempPE
│           │   │               └── Properties.Resources.Designer.cs.dll
│           │   ├── Button_test.sln
│           │   └── Button_test.suo
│           ├── DateTimeExample
│           │   ├── DateTimeExample
│           │   │   ├── DateTimeExample.csproj
│           │   │   ├── Form1.Designer.cs
│           │   │   ├── Form1.cs
│           │   │   ├── Form1.resx
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   ├── AssemblyInfo.cs
│           │   │   │   ├── Resources.Designer.cs
│           │   │   │   ├── Resources.resx
│           │   │   │   ├── Settings.Designer.cs
│           │   │   │   └── Settings.settings
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── DateTimeExample.exe
│           │   │   │       ├── DateTimeExample.pdb
│           │   │   │       ├── DateTimeExample.vshost.exe
│           │   │   │       └── DateTimeExample.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── DateTimeExample.Form1.resources
│           │   │           ├── DateTimeExample.Properties.Resources.resources
│           │   │           ├── DateTimeExample.csproj.FileListAbsolute.txt
│           │   │           ├── DateTimeExample.csproj.GenerateResource.Cache
│           │   │           ├── DateTimeExample.exe
│           │   │           ├── DateTimeExample.pdb
│           │   │           └── TempPE
│           │   ├── DateTimeExample.sln
│           │   └── DateTimeExample.suo
│           ├── ListViewExample
│           │   ├── ListViewExample
│           │   │   ├── Form1.Designer.cs
│           │   │   ├── Form1.cs
│           │   │   ├── Form1.resx
│           │   │   ├── ListViewExample.csproj
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   ├── AssemblyInfo.cs
│           │   │   │   ├── Resources.Designer.cs
│           │   │   │   ├── Resources.resx
│           │   │   │   ├── Settings.Designer.cs
│           │   │   │   └── Settings.settings
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── ListViewExample.exe
│           │   │   │       ├── ListViewExample.pdb
│           │   │   │       ├── ListViewExample.vshost.exe
│           │   │   │       └── ListViewExample.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── ListViewExample.Form1.resources
│           │   │           ├── ListViewExample.Properties.Resources.resources
│           │   │           ├── ListViewExample.csproj.FileListAbsolute.txt
│           │   │           ├── ListViewExample.csproj.GenerateResource.Cache
│           │   │           ├── ListViewExample.exe
│           │   │           ├── ListViewExample.pdb
│           │   │           └── TempPE
│           │   ├── ListViewExample.sln
│           │   ├── ListViewExample.suo
│           │   └── images
│           │       ├── 01.gif
│           │       ├── 02.gif
│           │       ├── 03.gif
│           │       ├── 04.gif
│           │       ├── 05.gif
│           │       ├── 06.gif
│           │       ├── 1.gif
│           │       ├── 2.gif
│           │       ├── 3.gif
│           │       ├── 4.gif
│           │       ├── 5.gif
│           │       └── 6.gif
│           ├── MathCalcExample
│           │   ├── MathCalcExample
│           │   │   ├── Form1.Designer.cs
│           │   │   ├── Form1.cs
│           │   │   ├── Form1.resx
│           │   │   ├── MathCalcExample.csproj
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   ├── AssemblyInfo.cs
│           │   │   │   ├── Resources.Designer.cs
│           │   │   │   ├── Resources.resx
│           │   │   │   ├── Settings.Designer.cs
│           │   │   │   └── Settings.settings
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── MathCalcExample.exe
│           │   │   │       ├── MathCalcExample.pdb
│           │   │   │       ├── MathCalcExample.vshost.exe
│           │   │   │       └── MathCalcExample.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── MathCalcExample.Properties.Resources.resources
│           │   │           ├── MathCalcExample.calc.resources
│           │   │           ├── MathCalcExample.csproj.FileListAbsolute.txt
│           │   │           ├── MathCalcExample.csproj.GenerateResource.Cache
│           │   │           ├── MathCalcExample.exe
│           │   │           ├── MathCalcExample.pdb
│           │   │           ├── Refactor
│           │   │           └── TempPE
│           │   ├── MathCalcExample.sln
│           │   ├── MathCalcExample.suo
│           │   └── PictureViewExample
│           │       ├── PictureViewExample
│           │       │   ├── Form1.Designer.cs
│           │       │   ├── Form1.cs
│           │       │   ├── Form1.resx
│           │       │   ├── Form2.Designer.cs
│           │       │   ├── Form2.cs
│           │       │   ├── Form2.resx
│           │       │   ├── PictureViewExample.csproj
│           │       │   ├── Program.cs
│           │       │   ├── Properties
│           │       │   │   ├── AssemblyInfo.cs
│           │       │   │   ├── Resources.Designer.cs
│           │       │   │   ├── Resources.resx
│           │       │   │   ├── Settings.Designer.cs
│           │       │   │   └── Settings.settings
│           │       │   ├── bin
│           │       │   │   └── Debug
│           │       │   │       ├── PictureViewExample.exe
│           │       │   │       ├── PictureViewExample.pdb
│           │       │   │       ├── PictureViewExample.vshost.exe
│           │       │   │       └── PictureViewExample.vshost.exe.manifest
│           │       │   └── obj
│           │       │       └── Debug
│           │       │           ├── PictureViewExample.Form1.resources
│           │       │           ├── PictureViewExample.Form2.resources
│           │       │           ├── PictureViewExample.Properties.Resources.resources
│           │       │           ├── PictureViewExample.csproj.FileListAbsolute.txt
│           │       │           ├── PictureViewExample.csproj.GenerateResource.Cache
│           │       │           ├── PictureViewExample.exe
│           │       │           ├── PictureViewExample.pdb
│           │       │           └── TempPE
│           │       ├── PictureViewExample.sln
│           │       ├── PictureViewExample.suo
│           │       └── images
│           │           └── m3.jpg
│           ├── PictureViewExample
│           │   ├── PictureViewExample
│           │   │   ├── Form1.Designer.cs
│           │   │   ├── Form1.cs
│           │   │   ├── Form1.resx
│           │   │   ├── Form2.Designer.cs
│           │   │   ├── Form2.cs
│           │   │   ├── Form2.resx
│           │   │   ├── PictureViewExample.csproj
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   ├── AssemblyInfo.cs
│           │   │   │   ├── Resources.Designer.cs
│           │   │   │   ├── Resources.resx
│           │   │   │   ├── Settings.Designer.cs
│           │   │   │   └── Settings.settings
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── PictureViewExample.exe
│           │   │   │       ├── PictureViewExample.pdb
│           │   │   │       ├── PictureViewExample.vshost.exe
│           │   │   │       └── PictureViewExample.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── PictureViewExample.Form1.resources
│           │   │           ├── PictureViewExample.Form2.resources
│           │   │           ├── PictureViewExample.Properties.Resources.resources
│           │   │           ├── PictureViewExample.csproj.FileListAbsolute.txt
│           │   │           ├── PictureViewExample.csproj.GenerateResource.Cache
│           │   │           ├── PictureViewExample.exe
│           │   │           ├── PictureViewExample.pdb
│           │   │           └── TempPE
│           │   ├── PictureViewExample.sln
│           │   ├── PictureViewExample.suo
│           │   └── images
│           │       └── m3.jpg
│           ├── ProgressBarExample
│           │   ├── ProgressBarExample
│           │   │   ├── Form1.Designer.cs
│           │   │   ├── Form1.cs
│           │   │   ├── Form1.resx
│           │   │   ├── Program.cs
│           │   │   ├── ProgressBarExample.csproj
│           │   │   ├── Properties
│           │   │   │   ├── AssemblyInfo.cs
│           │   │   │   ├── Resources.Designer.cs
│           │   │   │   ├── Resources.resx
│           │   │   │   ├── Settings.Designer.cs
│           │   │   │   └── Settings.settings
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── ProgressBarExample.exe
│           │   │   │       ├── ProgressBarExample.pdb
│           │   │   │       ├── ProgressBarExample.vshost.exe
│           │   │   │       └── ProgressBarExample.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── ProgressBarExample.Form1.resources
│           │   │           ├── ProgressBarExample.Properties.Resources.resources
│           │   │           ├── ProgressBarExample.csproj.FileListAbsolute.txt
│           │   │           ├── ProgressBarExample.csproj.GenerateResource.Cache
│           │   │           ├── ProgressBarExample.exe
│           │   │           ├── ProgressBarExample.pdb
│           │   │           └── TempPE
│           │   ├── ProgressBarExample.sln
│           │   └── ProgressBarExample.suo
│           ├── TextBox_test
│           │   ├── TextBox_test
│           │   │   ├── FormTextBox.Designer.cs
│           │   │   ├── FormTextBox.cs
│           │   │   ├── FormTextBox.resx
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   ├── AssemblyInfo.cs
│           │   │   │   ├── Resources.Designer.cs
│           │   │   │   ├── Resources.resx
│           │   │   │   ├── Settings.Designer.cs
│           │   │   │   └── Settings.settings
│           │   │   ├── TextBox_test.csproj
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── TextBox_test.exe
│           │   │   │       ├── TextBox_test.pdb
│           │   │   │       ├── TextBox_test.vshost.exe
│           │   │   │       └── TextBox_test.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── Refactor
│           │   │           ├── TempPE
│           │   │           ├── TextBox_test.FormTextBox.resources
│           │   │           ├── TextBox_test.Properties.Resources.resources
│           │   │           ├── TextBox_test.csproj.FileListAbsolute.txt
│           │   │           ├── TextBox_test.csproj.GenerateResource.Cache
│           │   │           ├── TextBox_test.exe
│           │   │           └── TextBox_test.pdb
│           │   ├── TextBox_test.sln
│           │   └── TextBox_test.suo
│           ├── TreeViewExample
│           │   ├── TreeViewExample
│           │   │   ├── Form1.Designer.cs
│           │   │   ├── Form1.cs
│           │   │   ├── Form1.resx
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   ├── AssemblyInfo.cs
│           │   │   │   ├── Resources.Designer.cs
│           │   │   │   ├── Resources.resx
│           │   │   │   ├── Settings.Designer.cs
│           │   │   │   └── Settings.settings
│           │   │   ├── TreeViewExample.csproj
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── TreeViewExample.exe
│           │   │   │       ├── TreeViewExample.pdb
│           │   │   │       ├── TreeViewExample.vshost.exe
│           │   │   │       └── TreeViewExample.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── TempPE
│           │   │           ├── TreeViewExample.Form1.resources
│           │   │           ├── TreeViewExample.Properties.Resources.resources
│           │   │           ├── TreeViewExample.csproj.FileListAbsolute.txt
│           │   │           ├── TreeViewExample.csproj.GenerateResource.Cache
│           │   │           ├── TreeViewExample.exe
│           │   │           └── TreeViewExample.pdb
│           │   ├── TreeViewExample.sln
│           │   ├── TreeViewExample.suo
│           │   └── images
│           │       ├── 1.gif
│           │       ├── 2.gif
│           │       └── 3.gif
│           ├── WindowsExample1
│           │   ├── WindowsExample1
│           │   │   ├── Form1.Designer.cs
│           │   │   ├── Form1.cs
│           │   │   ├── Form1.resx
│           │   │   ├── Program.cs
│           │   │   ├── Properties
│           │   │   │   ├── AssemblyInfo.cs
│           │   │   │   ├── Resources.Designer.cs
│           │   │   │   ├── Resources.resx
│           │   │   │   ├── Settings.Designer.cs
│           │   │   │   └── Settings.settings
│           │   │   ├── WindowsExample1.csproj
│           │   │   ├── bin
│           │   │   │   └── Debug
│           │   │   │       ├── WindowsExample1.exe
│           │   │   │       ├── WindowsExample1.pdb
│           │   │   │       ├── WindowsExample1.vshost.exe
│           │   │   │       └── WindowsExample1.vshost.exe.manifest
│           │   │   └── obj
│           │   │       └── Debug
│           │   │           ├── Refactor
│           │   │           ├── TempPE
│           │   │           ├── WindowsExample1.Form1.resources
│           │   │           ├── WindowsExample1.Properties.Resources.resources
│           │   │           ├── WindowsExample1.csproj.FileListAbsolute.txt
│           │   │           ├── WindowsExample1.csproj.GenerateResource.Cache
│           │   │           ├── WindowsExample1.exe
│           │   │           └── WindowsExample1.pdb
│           │   ├── WindowsExample1.sln
│           │   └── WindowsExample1.suo
│           └── WindowsExample2
│               ├── WindowsExample2
│               │   ├── Form1.Designer.cs
│               │   ├── Form1.cs
│               │   ├── Form1.resx
│               │   ├── Program.cs
│               │   ├── Properties
│               │   │   ├── AssemblyInfo.cs
│               │   │   ├── Resources.Designer.cs
│               │   │   ├── Resources.resx
│               │   │   ├── Settings.Designer.cs
│               │   │   └── Settings.settings
│               │   ├── Resources
│               │   │   └── d1.jpg
│               │   ├── WindowsExample2.csproj
│               │   ├── bin
│               │   │   └── Debug
│               │   │       ├── WindowsExample2.exe
│               │   │       ├── WindowsExample2.pdb
│               │   │       ├── WindowsExample2.vshost.exe
│               │   │       └── WindowsExample2.vshost.exe.manifest
│               │   └── obj
│               │       └── Debug
│               │           ├── TempPE
│               │           │   └── Properties.Resources.Designer.cs.dll
│               │           ├── WindowsExample2.Form1.resources
│               │           ├── WindowsExample2.Properties.Resources.resources
│               │           ├── WindowsExample2.csproj.FileListAbsolute.txt
│               │           ├── WindowsExample2.csproj.GenerateResource.Cache
│               │           ├── WindowsExample2.exe
│               │           └── WindowsExample2.pdb
│               ├── WindowsExample2.sln
│               ├── WindowsExample2.suo
│               └── images
│                   └── d1.jpg
└── C#基础与案例开发详解_c#基础与案例开发详解.rar

778 directories, 1506 files


实例下载地址

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警