在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → Visual Studio 2010 C# 从精通到入门 全部29个章节源码

Visual Studio 2010 C# 从精通到入门 全部29个章节源码

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:2.88M
  • 下载次数:16
  • 浏览次数:48
  • 发布时间:2023-09-14
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2

实例介绍

【实例简介】Visual Studio 2010 C# 从精通到入门 全部29个章节源码
本书全部源码包含:基础知识,指导你如何借助于Visual Studio 2010和.NET Framework Version 4.0;用C#语言来进行程序设计。你将学习C#语言的各种特性,并利用它们来构建运行于Microsoft Windows 操作系统上的应用...

【实例截图】

from clipboard

【核心代码】

.
├── Visual Studio 2010 C# Step by Step
│   ├── Appendix
│   │   ├── CustomerDB.py
│   │   ├── CustomerDB.rb
│   │   ├── PythonInteroperability
│   │   │   ├── PythonInteroperability
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   └── PythonInteroperability.csproj
│   │   │   └── PythonInteroperability.sln
│   │   ├── README.txt
│   │   └── RubyInteroperability
│   │       ├── RubyInteroperability
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   └── RubyInteroperability.csproj
│   │       └── RubyInteroperability.sln
│   ├── Chapter 10
│   │   ├── Cards Using Arrays
│   │   │   ├── Cards
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── Cards.csproj
│   │   │   │   ├── Game.xaml
│   │   │   │   ├── Game.xaml.cs
│   │   │   │   ├── Hand.cs
│   │   │   │   ├── Pack.cs
│   │   │   │   ├── PlayingCard.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Suit.cs
│   │   │   │   ├── Value.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Cards.exe
│   │   │   │   │       ├── Cards.pdb
│   │   │   │   │       ├── Cards.vshost.exe
│   │   │   │   │       └── Cards.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── App.g.cs
│   │   │   │           ├── App.g.i.cs
│   │   │   │           ├── Cards.Properties.Resources.resources
│   │   │   │           ├── Cards.csproj.FileListAbsolute.txt
│   │   │   │           ├── Cards.exe
│   │   │   │           ├── Cards.g.resources
│   │   │   │           ├── Cards.pdb
│   │   │   │           ├── Cards_MarkupCompile.cache
│   │   │   │           ├── Cards_MarkupCompile.i.cache
│   │   │   │           ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │           ├── Game.baml
│   │   │   │           ├── Game.g.cs
│   │   │   │           ├── Game.g.i.cs
│   │   │   │           ├── GenerateResource.read.1.tlog
│   │   │   │           ├── GenerateResource.write.1.tlog
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Cards.sln
│   │   │   └── Cards.suo
│   │   └── Cards Using Collections
│   │       ├── Cards
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── Cards.csproj
│   │       │   ├── Game.xaml
│   │       │   ├── Game.xaml.cs
│   │       │   ├── Hand.cs
│   │       │   ├── Pack.cs
│   │       │   ├── PlayingCard.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── Suit.cs
│   │       │   ├── Value.cs
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── Cards.exe
│   │       │   │       ├── Cards.pdb
│   │       │   │       ├── Cards.vshost.exe
│   │       │   │       └── Cards.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── App.g.cs
│   │       │           ├── App.g.i.cs
│   │       │           ├── Cards.Properties.Resources.resources
│   │       │           ├── Cards.csproj.FileListAbsolute.txt
│   │       │           ├── Cards.exe
│   │       │           ├── Cards.g.resources
│   │       │           ├── Cards.pdb
│   │       │           ├── Cards_MarkupCompile.cache
│   │       │           ├── Cards_MarkupCompile.i.cache
│   │       │           ├── DesignTimeResolveAssemblyReferences.cache
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── Game.baml
│   │       │           ├── Game.g.cs
│   │       │           ├── Game.g.i.cs
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           └── TempPE
│   │       │               └── Properties.Resources.Designer.cs.dll
│   │       ├── Cards.sln
│   │       └── Cards.suo
│   ├── Chapter 11
│   │   └── ParamsArray
│   │       ├── ParamsArray
│   │       │   ├── ParamsArray.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── Util.cs
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── ParamsArray.exe
│   │       │   │       ├── ParamsArray.pdb
│   │       │   │       ├── ParamsArray.vshost.exe
│   │       │   │       └── ParamsArray.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           ├── ParamsArray.Properties.Resources.resources
│   │       │           ├── ParamsArray.csproj.FileListAbsolute.txt
│   │       │           ├── ParamsArray.exe
│   │       │           ├── ParamsArray.pdb
│   │       │           └── TempPE
│   │       ├── ParamsArray.sln
│   │       └── ParamsArray.suo
│   ├── Chapter 12
│   │   ├── ExtensionMethod
│   │   │   ├── ExtensionMethod
│   │   │   │   ├── ExtensionMethod.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── Util.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ExtensionMethod.exe
│   │   │   │   │       ├── ExtensionMethod.pdb
│   │   │   │   │       ├── ExtensionMethod.vshost.exe
│   │   │   │   │       └── ExtensionMethod.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │           ├── ExtensionMethod.csproj.FileListAbsolute.txt
│   │   │   │           ├── ExtensionMethod.exe
│   │   │   │           ├── ExtensionMethod.pdb
│   │   │   │           └── TempPE
│   │   │   ├── ExtensionMethod.sln
│   │   │   └── ExtensionMethod.suo
│   │   └── Vehicles
│   │       ├── Vehicles
│   │       │   ├── Airplane.cs
│   │       │   ├── Car.cs
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   ├── Vehicle.cs
│   │       │   ├── Vehicles.csproj
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── Vehicles.exe
│   │       │   │       ├── Vehicles.pdb
│   │       │   │       ├── Vehicles.vshost.exe
│   │       │   │       └── Vehicles.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── TempPE
│   │       │           ├── Vehicles.csproj.FileListAbsolute.txt
│   │       │           ├── Vehicles.exe
│   │       │           └── Vehicles.pdb
│   │       ├── Vehicles.sln
│   │       └── Vehicles.suo
│   ├── Chapter 13
│   │   ├── Drawing
│   │   │   ├── Drawing
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── Circle.cs
│   │   │   │   ├── Drawing.csproj
│   │   │   │   ├── DrawingPad.xaml
│   │   │   │   ├── DrawingPad.xaml.cs
│   │   │   │   ├── DrawingShape.cs
│   │   │   │   ├── IColor.cs
│   │   │   │   ├── IDraw.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Square.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Drawing.exe
│   │   │   │   │       ├── Drawing.pdb
│   │   │   │   │       ├── Drawing.vshost.exe
│   │   │   │   │       └── Drawing.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── App.g.cs
│   │   │   │               ├── App.g.i.cs
│   │   │   │               ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── Drawing.Properties.Resources.resources
│   │   │   │               ├── Drawing.csproj.FileListAbsolute.txt
│   │   │   │               ├── Drawing.exe
│   │   │   │               ├── Drawing.g.resources
│   │   │   │               ├── Drawing.pdb
│   │   │   │               ├── DrawingPad.baml
│   │   │   │               ├── DrawingPad.g.cs
│   │   │   │               ├── DrawingPad.g.i.cs
│   │   │   │               ├── Drawing_MarkupCompile.cache
│   │   │   │               ├── Drawing_MarkupCompile.i.cache
│   │   │   │               ├── GenerateResource.read.1.tlog
│   │   │   │               ├── GenerateResource.write.1.tlog
│   │   │   │               └── TempPE
│   │   │   │                   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Drawing.sln
│   │   │   └── Drawing.suo
│   │   └── Drawing Using Interfaces
│   │       ├── Drawing
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── Circle.cs
│   │       │   ├── Drawing.csproj
│   │       │   ├── DrawingPad.xaml
│   │       │   ├── DrawingPad.xaml.cs
│   │       │   ├── IColor.cs
│   │       │   ├── IDraw.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── Square.cs
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── Drawing.exe
│   │       │   │       ├── Drawing.pdb
│   │       │   │       ├── Drawing.vshost.exe
│   │       │   │       └── Drawing.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── x86
│   │       │           └── Debug
│   │       │               ├── App.g.cs
│   │       │               ├── App.g.i.cs
│   │       │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │               ├── Drawing.Properties.Resources.resources
│   │       │               ├── Drawing.csproj.FileListAbsolute.txt
│   │       │               ├── Drawing.exe
│   │       │               ├── Drawing.g.resources
│   │       │               ├── Drawing.pdb
│   │       │               ├── DrawingPad.baml
│   │       │               ├── DrawingPad.g.cs
│   │       │               ├── DrawingPad.g.i.cs
│   │       │               ├── Drawing_MarkupCompile.cache
│   │       │               ├── Drawing_MarkupCompile.i.cache
│   │       │               ├── GenerateResource.read.1.tlog
│   │       │               ├── GenerateResource.write.1.tlog
│   │       │               └── TempPE
│   │       ├── Drawing.sln
│   │       └── Drawing.suo
│   ├── Chapter 14
│   │   └── UsingStatement
│   │       ├── UsingStatement
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── MainWindow.xaml
│   │       │   ├── MainWindow.xaml.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── UsingStatement.csproj
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── UsingStatement.exe
│   │       │   │       ├── UsingStatement.pdb
│   │       │   │       ├── UsingStatement.vshost.exe
│   │       │   │       └── UsingStatement.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── App.g.cs
│   │       │           ├── App.g.i.cs
│   │       │           ├── DesignTimeResolveAssemblyReferences.cache
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           ├── MainWindow.baml
│   │       │           ├── MainWindow.g.cs
│   │       │           ├── MainWindow.g.i.cs
│   │       │           ├── TempPE
│   │       │           │   └── Properties.Resources.Designer.cs.dll
│   │       │           ├── UsingStatement.Properties.Resources.resources
│   │       │           ├── UsingStatement.csproj.FileListAbsolute.txt
│   │       │           ├── UsingStatement.exe
│   │       │           ├── UsingStatement.g.resources
│   │       │           ├── UsingStatement.pdb
│   │       │           ├── UsingStatement_MarkupCompile.cache
│   │       │           └── UsingStatement_MarkupCompile.i.cache
│   │       ├── UsingStatement.sln
│   │       └── UsingStatement.suo
│   ├── Chapter 15
│   │   ├── AutomaticProperties
│   │   │   ├── AutomaticProperties
│   │   │   │   ├── AutomaticProperties.csproj
│   │   │   │   ├── Polygon.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── AutomaticProperties.exe
│   │   │   │   │       ├── AutomaticProperties.pdb
│   │   │   │   │       ├── AutomaticProperties.vshost.exe
│   │   │   │   │       └── AutomaticProperties.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── AutomaticProperties.csproj.FileListAbsolute.txt
│   │   │   │           ├── AutomaticProperties.exe
│   │   │   │           ├── AutomaticProperties.pdb
│   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │           └── TempPE
│   │   │   ├── AutomaticProperties.sln
│   │   │   └── AutomaticProperties.suo
│   │   └── WindowProperties
│   │       ├── WindowProperties
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── MainWindow.xaml
│   │       │   ├── MainWindow.xaml.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── WindowProperties.csproj
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── WindowProperties.exe
│   │       │   │       ├── WindowProperties.pdb
│   │       │   │       ├── WindowProperties.vshost.exe
│   │       │   │       └── WindowProperties.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── App.g.cs
│   │       │           ├── App.g.i.cs
│   │       │           ├── DesignTimeResolveAssemblyReferences.cache
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           ├── MainWindow.baml
│   │       │           ├── MainWindow.g.cs
│   │       │           ├── MainWindow.g.i.cs
│   │       │           ├── TempPE
│   │       │           │   └── Properties.Resources.Designer.cs.dll
│   │       │           ├── WindowProperties.Properties.Resources.resources
│   │       │           ├── WindowProperties.csproj.FileListAbsolute.txt
│   │       │           ├── WindowProperties.exe
│   │       │           ├── WindowProperties.g.resources
│   │       │           ├── WindowProperties.pdb
│   │       │           ├── WindowProperties_MarkupCompile.cache
│   │       │           └── WindowProperties_MarkupCompile.i.cache
│   │       ├── WindowProperties.sln
│   │       └── WindowProperties.suo
│   ├── Chapter 16
│   │   └── Indexers
│   │       ├── Indexers
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── Indexers.csproj
│   │       │   ├── MainWindow.xaml
│   │       │   ├── MainWindow.xaml.cs
│   │       │   ├── Name.cs
│   │       │   ├── PhoneBook.cs
│   │       │   ├── PhoneNumber.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── Indexers.exe
│   │       │   │       ├── Indexers.pdb
│   │       │   │       ├── Indexers.vshost.exe
│   │       │   │       └── Indexers.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── App.g.cs
│   │       │           ├── App.g.i.cs
│   │       │           ├── DesignTimeResolveAssemblyReferences.cache
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           ├── Indexers.Properties.Resources.resources
│   │       │           ├── Indexers.csproj.FileListAbsolute.txt
│   │       │           ├── Indexers.exe
│   │       │           ├── Indexers.g.resources
│   │       │           ├── Indexers.pdb
│   │       │           ├── Indexers_MarkupCompile.cache
│   │       │           ├── Indexers_MarkupCompile.i.cache
│   │       │           ├── MainWindow.baml
│   │       │           ├── MainWindow.g.cs
│   │       │           ├── MainWindow.g.i.cs
│   │       │           └── TempPE
│   │       │               └── Properties.Resources.Designer.cs.dll
│   │       ├── Indexers.sln
│   │       └── Indexers.suo
│   ├── Chapter 17
│   │   ├── Clock Using Delegates
│   │   │   ├── Clock
│   │   │   │   ├── AmericanClock.cs
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── Clock.csproj
│   │   │   │   ├── ClockWindow.xaml
│   │   │   │   ├── ClockWindow.xaml.cs
│   │   │   │   ├── Controller.cs
│   │   │   │   ├── EuropeanClock.cs
│   │   │   │   ├── JapaneseClock.cs
│   │   │   │   ├── LocalClock.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Delegates.exe
│   │   │   │   │       ├── Delegates.pdb
│   │   │   │   │       ├── Delegates.vshost.exe
│   │   │   │   │       └── Delegates.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── App.g.cs
│   │   │   │           ├── App.g.i.cs
│   │   │   │           ├── Clock.csproj.FileListAbsolute.txt
│   │   │   │           ├── ClockWindow.baml
│   │   │   │           ├── ClockWindow.g.cs
│   │   │   │           ├── ClockWindow.g.i.cs
│   │   │   │           ├── Delegates.Properties.Resources.resources
│   │   │   │           ├── Delegates.exe
│   │   │   │           ├── Delegates.g.resources
│   │   │   │           ├── Delegates.pdb
│   │   │   │           ├── Delegates_MarkupCompile.cache
│   │   │   │           ├── Delegates_MarkupCompile.i.cache
│   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │           ├── GenerateResource.read.1.tlog
│   │   │   │           ├── GenerateResource.write.1.tlog
│   │   │   │           └── TempPE
│   │   │   ├── Clock.sln
│   │   │   └── Clock.suo
│   │   └── Clock Using Events
│   │       ├── Clock
│   │       │   ├── AmericanClock.cs
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── Clock.csproj
│   │       │   ├── ClockWindow.xaml
│   │       │   ├── ClockWindow.xaml.cs
│   │       │   ├── Controller.cs
│   │       │   ├── EuropeanClock.cs
│   │       │   ├── JapaneseClock.cs
│   │       │   ├── LocalClock.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── Delegates.exe
│   │       │   │       ├── Delegates.pdb
│   │       │   │       ├── Delegates.vshost.exe
│   │       │   │       └── Delegates.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── App.g.cs
│   │       │           ├── App.g.i.cs
│   │       │           ├── Clock.csproj.FileListAbsolute.txt
│   │       │           ├── ClockWindow.baml
│   │       │           ├── ClockWindow.g.cs
│   │       │           ├── ClockWindow.g.i.cs
│   │       │           ├── Delegates.Properties.Resources.resources
│   │       │           ├── Delegates.exe
│   │       │           ├── Delegates.g.resources
│   │       │           ├── Delegates.pdb
│   │       │           ├── Delegates_MarkupCompile.cache
│   │       │           ├── Delegates_MarkupCompile.i.cache
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           └── TempPE
│   │       ├── Clock.sln
│   │       └── Clock.suo
│   ├── Chapter 18
│   │   ├── BinaryTree
│   │   │   ├── BinaryTree
│   │   │   │   ├── BinaryTree.csproj
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── Tree.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── BinaryTree.dll
│   │   │   │   │       └── BinaryTree.pdb
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── BinaryTree.csproj.FileListAbsolute.txt
│   │   │   │           ├── BinaryTree.dll
│   │   │   │           ├── BinaryTree.pdb
│   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │           └── TempPE
│   │   │   ├── BinaryTree.sln
│   │   │   └── BinaryTree.suo
│   │   ├── BinaryTreeTest
│   │   │   ├── BinaryTreeTest.csproj
│   │   │   ├── BinaryTreeTest.sln
│   │   │   ├── BinaryTreeTest.suo
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── BinaryTree.dll
│   │   │   │       ├── BinaryTree.pdb
│   │   │   │       ├── BinaryTreeTest.exe
│   │   │   │       ├── BinaryTreeTest.pdb
│   │   │   │       ├── BinaryTreeTest.vshost.exe
│   │   │   │       └── BinaryTreeTest.vshost.exe.manifest
│   │   │   └── obj
│   │   │       └── Debug
│   │   │           ├── BinaryTreeTest.csproj.FileListAbsolute.txt
│   │   │           ├── BinaryTreeTest.exe
│   │   │           ├── BinaryTreeTest.pdb
│   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │           ├── ResolveAssemblyReference.cache
│   │   │           └── TempPE
│   │   └── BuildTree
│   │       ├── BuildTree
│   │       │   ├── BuildTree.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── BinaryTree.dll
│   │       │   │       ├── BinaryTree.pdb
│   │       │   │       ├── BuildTree.exe
│   │       │   │       ├── BuildTree.pdb
│   │       │   │       ├── BuildTree.vshost.exe
│   │       │   │       └── BuildTree.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── BuildTree.csproj.FileListAbsolute.txt
│   │       │           ├── BuildTree.exe
│   │       │           ├── BuildTree.pdb
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           └── TempPE
│   │       ├── BuildTree.sln
│   │       └── BuildTree.suo
│   ├── Chapter 19
│   │   ├── BinaryTree
│   │   │   ├── BinaryTree
│   │   │   │   ├── BinaryTree.csproj
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── Tree.cs
│   │   │   │   ├── TreeEnumerator.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── BinaryTree.dll
│   │   │   │   │       └── BinaryTree.pdb
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── BinaryTree.csproj.FileListAbsolute.txt
│   │   │   │           ├── BinaryTree.dll
│   │   │   │           ├── BinaryTree.pdb
│   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │           └── TempPE
│   │   │   ├── BinaryTree.sln
│   │   │   └── BinaryTree.suo
│   │   ├── EnumeratorTest
│   │   │   ├── EnumeratorTest.csproj
│   │   │   ├── EnumeratorTest.sln
│   │   │   ├── EnumeratorTest.suo
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── BinaryTree.dll
│   │   │   │       ├── BinaryTree.pdb
│   │   │   │       ├── EnumeratorTest.exe
│   │   │   │       ├── EnumeratorTest.pdb
│   │   │   │       ├── EnumeratorTest.vshost.exe
│   │   │   │       └── EnumeratorTest.vshost.exe.manifest
│   │   │   └── obj
│   │   │       └── Debug
│   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │           ├── EnumeratorTest.csproj.FileListAbsolute.txt
│   │   │           ├── EnumeratorTest.exe
│   │   │           ├── EnumeratorTest.pdb
│   │   │           └── TempPE
│   │   └── IteratorBinaryTree
│   │       ├── BinaryTree
│   │       │   ├── BinaryTree.csproj
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   ├── Tree.cs
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── BinaryTree.dll
│   │       │   │       └── BinaryTree.pdb
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── BinaryTree.csproj.FileListAbsolute.txt
│   │       │           ├── BinaryTree.dll
│   │       │           ├── BinaryTree.pdb
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           └── TempPE
│   │       ├── BinaryTree.sln
│   │       └── BinaryTree.suo
│   ├── Chapter 2
│   │   ├── MathsOperators
│   │   │   ├── MathsOperators
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── MainWindow.xaml
│   │   │   │   ├── MainWindow.xaml.cs
│   │   │   │   ├── MathsOperators.csproj
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── MathsOperators.vshost.exe
│   │   │   │   │       └── MathsOperators.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── App.g.i.cs
│   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │           ├── MainWindow.g.i.cs
│   │   │   │           ├── MathsOperators_MarkupCompile.i.cache
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   ├── MathsOperators.sln
│   │   │   └── MathsOperators.suo
│   │   └── PrimitiveDataTypes
│   │       ├── PrimitiveDataTypes
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── MainWindow.xaml
│   │       │   ├── MainWindow.xaml.cs
│   │       │   ├── PrimitiveDataTypes.csproj
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── PrimitiveDataTypes.exe
│   │       │   │       ├── PrimitiveDataTypes.pdb
│   │       │   │       ├── PrimitiveDataTypes.vshost.exe
│   │       │   │       └── PrimitiveDataTypes.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── App.g.cs
│   │       │           ├── App.g.i.cs
│   │       │           ├── DesignTimeResolveAssemblyReferences.cache
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           ├── MainWindow.baml
│   │       │           ├── MainWindow.g.cs
│   │       │           ├── MainWindow.g.i.cs
│   │       │           ├── PrimitiveDataTypes.Properties.Resources.resources
│   │       │           ├── PrimitiveDataTypes.csproj.FileListAbsolute.txt
│   │       │           ├── PrimitiveDataTypes.exe
│   │       │           ├── PrimitiveDataTypes.g.resources
│   │       │           ├── PrimitiveDataTypes.pdb
│   │       │           ├── PrimitiveDataTypes_MarkupCompile.cache
│   │       │           ├── PrimitiveDataTypes_MarkupCompile.i.cache
│   │       │           └── TempPE
│   │       │               └── Properties.Resources.Designer.cs.dll
│   │       ├── PrimitiveDataTypes.sln
│   │       └── PrimitiveDataTypes.suo
│   ├── Chapter 20
│   │   ├── BinaryTree
│   │   │   ├── BinaryTree.csproj
│   │   │   ├── BinaryTree.sln
│   │   │   ├── BinaryTree.suo
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Tree.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── BinaryTree.dll
│   │   │   │       └── BinaryTree.pdb
│   │   │   └── obj
│   │   │       └── Debug
│   │   │           ├── BinaryTree.csproj.FileListAbsolute.txt
│   │   │           ├── BinaryTree.dll
│   │   │           ├── BinaryTree.pdb
│   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │           └── TempPE
│   │   └── QueryBinaryTree
│   │       ├── QueryBinaryTree
│   │       │   ├── Employee.cs
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   ├── QueryBinaryTree.csproj
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── BinaryTree.dll
│   │       │   │       ├── BinaryTree.pdb
│   │       │   │       ├── QueryBinaryTree.exe
│   │       │   │       ├── QueryBinaryTree.pdb
│   │       │   │       ├── QueryBinaryTree.vshost.exe
│   │       │   │       └── QueryBinaryTree.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── QueryBinaryTree.csproj.FileListAbsolute.txt
│   │       │           ├── QueryBinaryTree.exe
│   │       │           ├── QueryBinaryTree.pdb
│   │       │           ├── ResolveAssemblyReference.cache
│   │       │           └── TempPE
│   │       ├── QueryBinaryTree.sln
│   │       └── QueryBinaryTree.suo
│   ├── Chapter 21
│   │   └── ComplexNumbers
│   │       ├── ComplexNumbers
│   │       │   ├── Complex.cs
│   │       │   ├── ComplexNumbers.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── ComplexNumbers.exe
│   │       │   │       ├── ComplexNumbers.pdb
│   │       │   │       ├── ComplexNumbers.vshost.exe
│   │       │   │       └── ComplexNumbers.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── x86
│   │       │           └── Debug
│   │       │               ├── ComplexNumbers.csproj.FileListAbsolute.txt
│   │       │               ├── ComplexNumbers.exe
│   │       │               ├── ComplexNumbers.pdb
│   │       │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │               └── TempPE
│   │       ├── ComplexNumbers.sln
│   │       └── ComplexNumbers.suo
│   ├── Chapter 22
│   │   └── BellRingers
│   │       ├── BellRingers
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── BellRingers.csproj
│   │       │   ├── MainWindow.xaml
│   │       │   ├── MainWindow.xaml.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── bell.gif
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── BellRingers.exe
│   │       │   │       ├── BellRingers.pdb
│   │       │   │       ├── BellRingers.vshost.exe
│   │       │   │       └── BellRingers.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── x86
│   │       │           └── Debug
│   │       │               ├── App.g.cs
│   │       │               ├── App.g.i.cs
│   │       │               ├── BellRingers.Properties.Resources.resources
│   │       │               ├── BellRingers.csproj.FileListAbsolute.txt
│   │       │               ├── BellRingers.exe
│   │       │               ├── BellRingers.g.resources
│   │       │               ├── BellRingers.pdb
│   │       │               ├── BellRingers_MarkupCompile.cache
│   │       │               ├── BellRingers_MarkupCompile.i.cache
│   │       │               ├── DesignTimeResolveAssemblyReferences.cache
│   │       │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │               ├── GenerateResource.read.1.tlog
│   │       │               ├── GenerateResource.write.1.tlog
│   │       │               ├── MainWindow.baml
│   │       │               ├── MainWindow.g.cs
│   │       │               ├── MainWindow.g.i.cs
│   │       │               └── TempPE
│   │       │                   └── Properties.Resources.Designer.cs.dll
│   │       ├── BellRingers.sln
│   │       └── BellRingers.suo
│   ├── Chapter 23
│   │   └── BellRingers
│   │       ├── BellRingers
│   │       │   ├── About.xaml
│   │       │   ├── About.xaml.cs
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── BellRingers.csproj
│   │       │   ├── Face.BMP
│   │       │   ├── MainWindow.xaml
│   │       │   ├── MainWindow.xaml.cs
│   │       │   ├── Member.cs
│   │       │   ├── Note.BMP
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── Ring.BMP
│   │       │   ├── bell.gif
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── BellRingers.exe
│   │       │   │       ├── BellRingers.pdb
│   │       │   │       ├── BellRingers.vshost.exe
│   │       │   │       └── BellRingers.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── x86
│   │       │           └── Debug
│   │       │               ├── About.baml
│   │       │               ├── About.g.cs
│   │       │               ├── About.g.i.cs
│   │       │               ├── App.g.cs
│   │       │               ├── App.g.i.cs
│   │       │               ├── BellRingers.Properties.Resources.resources
│   │       │               ├── BellRingers.csproj.FileListAbsolute.txt
│   │       │               ├── BellRingers.exe
│   │       │               ├── BellRingers.g.resources
│   │       │               ├── BellRingers.pdb
│   │       │               ├── BellRingers_MarkupCompile.cache
│   │       │               ├── BellRingers_MarkupCompile.i.cache
│   │       │               ├── DesignTimeResolveAssemblyReferences.cache
│   │       │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │               ├── GenerateResource.read.1.tlog
│   │       │               ├── GenerateResource.write.1.tlog
│   │       │               ├── MainWindow.baml
│   │       │               ├── MainWindow.g.cs
│   │       │               ├── MainWindow.g.i.cs
│   │       │               └── TempPE
│   │       │                   └── Properties.Resources.Designer.cs.dll
│   │       ├── BellRingers.sln
│   │       └── BellRingers.suo
│   ├── Chapter 24
│   │   └── OrderTickets
│   │       ├── OrderTickets
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── OrderTickets.csproj
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── TicketForm.xaml
│   │       │   ├── TicketForm.xaml.cs
│   │       │   ├── TicketOrder.cs
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── OrderTickets.exe
│   │       │   │       ├── OrderTickets.pdb
│   │       │   │       ├── OrderTickets.vshost.exe
│   │       │   │       └── OrderTickets.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── x86
│   │       │           └── Debug
│   │       │               ├── App.g.cs
│   │       │               ├── App.g.i.cs
│   │       │               ├── DesignTimeResolveAssemblyReferences.cache
│   │       │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │               ├── GenerateResource.read.1.tlog
│   │       │               ├── GenerateResource.write.1.tlog
│   │       │               ├── GeneratedInternalTypeHelper.g.cs
│   │       │               ├── GeneratedInternalTypeHelper.g.i.cs
│   │       │               ├── OrderTickets.Properties.Resources.resources
│   │       │               ├── OrderTickets.csproj.FileListAbsolute.txt
│   │       │               ├── OrderTickets.exe
│   │       │               ├── OrderTickets.g.resources
│   │       │               ├── OrderTickets.pdb
│   │       │               ├── OrderTickets_MarkupCompile.cache
│   │       │               ├── OrderTickets_MarkupCompile.i.cache
│   │       │               ├── OrderTickets_MarkupCompile.i.lref
│   │       │               ├── OrderTickets_MarkupCompile.lref
│   │       │               ├── TempPE
│   │       │               │   └── Properties.Resources.Designer.cs.dll
│   │       │               ├── TicketForm.baml
│   │       │               ├── TicketForm.g.cs
│   │       │               └── TicketForm.g.i.cs
│   │       ├── OrderTickets.sln
│   │       └── OrderTickets.suo
│   ├── Chapter 25
│   │   ├── LINQOrders
│   │   │   ├── LINQOrders
│   │   │   │   ├── LINQOrders.csproj
│   │   │   │   ├── LINQReport.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── LINQOrders.exe
│   │   │   │   │       ├── LINQOrders.pdb
│   │   │   │   │       ├── LINQOrders.vshost.exe
│   │   │   │   │       └── LINQOrders.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── LINQOrders.csproj.FileListAbsolute.txt
│   │   │   │               ├── LINQOrders.exe
│   │   │   │               ├── LINQOrders.pdb
│   │   │   │               └── TempPE
│   │   │   ├── LINQOrders.sln
│   │   │   └── LINQOrders.suo
│   │   ├── Readme.txt
│   │   ├── ReportOrders
│   │   │   ├── ReportOrders
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── Report.cs
│   │   │   │   ├── ReportOrders.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ReportOrders.exe
│   │   │   │   │       ├── ReportOrders.pdb
│   │   │   │   │       ├── ReportOrders.vshost.exe
│   │   │   │   │       └── ReportOrders.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── ReportOrders.csproj.FileListAbsolute.txt
│   │   │   │               ├── ReportOrders.exe
│   │   │   │               ├── ReportOrders.pdb
│   │   │   │               └── TempPE
│   │   │   ├── ReportOrders.sln
│   │   │   └── ReportOrders.suo
│   │   ├── instnwnd.sql
│   │   └── sql instnwnd.txt
│   ├── Chapter 26
│   │   ├── Readme.txt
│   │   ├── Suppliers
│   │   │   ├── Suppliers
│   │   │   │   ├── App.Config
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── Northwind.Designer.cs
│   │   │   │   ├── Northwind.edmx
│   │   │   │   ├── ProductForm.xaml
│   │   │   │   ├── ProductForm.xaml.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── DataSources
│   │   │   │   │   │   └── NorthwindEntities.datasource
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── SupplierInfo.xaml
│   │   │   │   ├── SupplierInfo.xaml.cs
│   │   │   │   ├── Suppliers.csproj
│   │   │   │   ├── VC# Express App.xaml
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Suppliers.exe
│   │   │   │   │       ├── Suppliers.exe.config
│   │   │   │   │       ├── Suppliers.pdb
│   │   │   │   │       ├── Suppliers.vshost.exe
│   │   │   │   │       ├── Suppliers.vshost.exe.config
│   │   │   │   │       └── Suppliers.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── App.g.cs
│   │   │   │               ├── App.g.i.cs
│   │   │   │               ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── GenerateResource.read.1.tlog
│   │   │   │               ├── GenerateResource.write.1.tlog
│   │   │   │               ├── GeneratedInternalTypeHelper.g.cs
│   │   │   │               ├── GeneratedInternalTypeHelper.g.i.cs
│   │   │   │               ├── ProductForm.baml
│   │   │   │               ├── ProductForm.g.cs
│   │   │   │               ├── ProductForm.g.i.cs
│   │   │   │               ├── SupplierInfo.baml
│   │   │   │               ├── SupplierInfo.g.cs
│   │   │   │               ├── SupplierInfo.g.i.cs
│   │   │   │               ├── Suppliers.Properties.Resources.resources
│   │   │   │               ├── Suppliers.csproj.FileListAbsolute.txt
│   │   │   │               ├── Suppliers.exe
│   │   │   │               ├── Suppliers.g.resources
│   │   │   │               ├── Suppliers.pdb
│   │   │   │               ├── Suppliers_MarkupCompile.cache
│   │   │   │               ├── Suppliers_MarkupCompile.i.cache
│   │   │   │               ├── Suppliers_MarkupCompile.i.lref
│   │   │   │               ├── Suppliers_MarkupCompile.lref
│   │   │   │               ├── TempPE
│   │   │   │               │   ├── Northwind.Designer.cs.dll
│   │   │   │               │   └── Properties.Resources.Designer.cs.dll
│   │   │   │               └── edmxResourcesToEmbed
│   │   │   │                   ├── Northwind.csdl
│   │   │   │                   ├── Northwind.msl
│   │   │   │                   └── Northwind.ssdl
│   │   │   ├── Suppliers.sln
│   │   │   └── Suppliers.suo
│   │   └── detach.sql
│   ├── Chapter 27
│   │   ├── GraphDemo
│   │   │   ├── GraphDemo
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── GraphDemo.csproj
│   │   │   │   ├── GraphWindow.xaml
│   │   │   │   ├── GraphWindow.xaml.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── GraphDemo.exe
│   │   │   │   │       ├── GraphDemo.pdb
│   │   │   │   │       ├── GraphDemo.vshost.exe
│   │   │   │   │       └── GraphDemo.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── App.g.cs
│   │   │   │               ├── App.g.i.cs
│   │   │   │               ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── GenerateResource.read.1.tlog
│   │   │   │               ├── GenerateResource.write.1.tlog
│   │   │   │               ├── GraphDemo.Properties.Resources.resources
│   │   │   │               ├── GraphDemo.csproj.FileListAbsolute.txt
│   │   │   │               ├── GraphDemo.exe
│   │   │   │               ├── GraphDemo.g.resources
│   │   │   │               ├── GraphDemo.pdb
│   │   │   │               ├── GraphDemo_MarkupCompile.cache
│   │   │   │               ├── GraphDemo_MarkupCompile.i.cache
│   │   │   │               ├── GraphWindow.baml
│   │   │   │               ├── GraphWindow.g.cs
│   │   │   │               ├── GraphWindow.g.i.cs
│   │   │   │               └── TempPE
│   │   │   │                   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── GraphDemo.sln
│   │   │   └── GraphDemo.suo
│   │   ├── GraphDemo Canceling Tasks
│   │   │   ├── GraphDemo
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── GraphDemo.csproj
│   │   │   │   ├── GraphWindow.xaml
│   │   │   │   ├── GraphWindow.xaml.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── GraphDemo.exe
│   │   │   │   │       ├── GraphDemo.pdb
│   │   │   │   │       ├── GraphDemo.vshost.exe
│   │   │   │   │       └── GraphDemo.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── App.g.cs
│   │   │   │               ├── App.g.i.cs
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── GenerateResource.read.1.tlog
│   │   │   │               ├── GenerateResource.write.1.tlog
│   │   │   │               ├── GraphDemo.Properties.Resources.resources
│   │   │   │               ├── GraphDemo.csproj.FileListAbsolute.txt
│   │   │   │               ├── GraphDemo.exe
│   │   │   │               ├── GraphDemo.g.resources
│   │   │   │               ├── GraphDemo.pdb
│   │   │   │               ├── GraphDemo_MarkupCompile.cache
│   │   │   │               ├── GraphDemo_MarkupCompile.i.cache
│   │   │   │               ├── GraphWindow.baml
│   │   │   │               ├── GraphWindow.g.cs
│   │   │   │               ├── GraphWindow.g.i.cs
│   │   │   │               └── TempPE
│   │   │   ├── GraphDemo.sln
│   │   │   └── GraphDemo.suo
│   │   ├── GraphDemo Using Tasks
│   │   │   ├── GraphDemo
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── GraphDemo.csproj
│   │   │   │   ├── GraphWindow.xaml
│   │   │   │   ├── GraphWindow.xaml.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── GraphDemo.exe
│   │   │   │   │       ├── GraphDemo.pdb
│   │   │   │   │       ├── GraphDemo.vshost.exe
│   │   │   │   │       └── GraphDemo.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── App.g.cs
│   │   │   │               ├── App.g.i.cs
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── GenerateResource.read.1.tlog
│   │   │   │               ├── GenerateResource.write.1.tlog
│   │   │   │               ├── GraphDemo.Properties.Resources.resources
│   │   │   │               ├── GraphDemo.csproj.FileListAbsolute.txt
│   │   │   │               ├── GraphDemo.exe
│   │   │   │               ├── GraphDemo.g.resources
│   │   │   │               ├── GraphDemo.pdb
│   │   │   │               ├── GraphDemo_MarkupCompile.cache
│   │   │   │               ├── GraphDemo_MarkupCompile.i.cache
│   │   │   │               ├── GraphWindow.baml
│   │   │   │               ├── GraphWindow.g.cs
│   │   │   │               ├── GraphWindow.g.i.cs
│   │   │   │               └── TempPE
│   │   │   ├── GraphDemo.sln
│   │   │   └── GraphDemo.suo
│   │   ├── GraphDemo Using Tasks that Return Results
│   │   │   ├── GraphDemo
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── GraphDemo.csproj
│   │   │   │   ├── GraphWindow.xaml
│   │   │   │   ├── GraphWindow.xaml.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── GraphDemo.exe
│   │   │   │   │       ├── GraphDemo.pdb
│   │   │   │   │       ├── GraphDemo.vshost.exe
│   │   │   │   │       └── GraphDemo.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── App.g.cs
│   │   │   │               ├── App.g.i.cs
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── GenerateResource.read.1.tlog
│   │   │   │               ├── GenerateResource.write.1.tlog
│   │   │   │               ├── GraphDemo.Properties.Resources.resources
│   │   │   │               ├── GraphDemo.csproj.FileListAbsolute.txt
│   │   │   │               ├── GraphDemo.exe
│   │   │   │               ├── GraphDemo.g.resources
│   │   │   │               ├── GraphDemo.pdb
│   │   │   │               ├── GraphDemo_MarkupCompile.cache
│   │   │   │               ├── GraphDemo_MarkupCompile.i.cache
│   │   │   │               ├── GraphWindow.baml
│   │   │   │               ├── GraphWindow.g.cs
│   │   │   │               ├── GraphWindow.g.i.cs
│   │   │   │               └── TempPE
│   │   │   ├── GraphDemo.sln
│   │   │   └── GraphDemo.suo
│   │   ├── GraphDemo Using the Parallel Class
│   │   │   ├── GraphDemo
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── GraphDemo.csproj
│   │   │   │   ├── GraphWindow.xaml
│   │   │   │   ├── GraphWindow.xaml.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── GraphDemo.exe
│   │   │   │   │       ├── GraphDemo.pdb
│   │   │   │   │       ├── GraphDemo.vshost.exe
│   │   │   │   │       └── GraphDemo.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── App.g.cs
│   │   │   │               ├── App.g.i.cs
│   │   │   │               ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── GenerateResource.read.1.tlog
│   │   │   │               ├── GenerateResource.write.1.tlog
│   │   │   │               ├── GraphDemo.Properties.Resources.resources
│   │   │   │               ├── GraphDemo.csproj.FileListAbsolute.txt
│   │   │   │               ├── GraphDemo.exe
│   │   │   │               ├── GraphDemo.g.resources
│   │   │   │               ├── GraphDemo.pdb
│   │   │   │               ├── GraphDemo_MarkupCompile.cache
│   │   │   │               ├── GraphDemo_MarkupCompile.i.cache
│   │   │   │               ├── GraphWindow.baml
│   │   │   │               ├── GraphWindow.g.cs
│   │   │   │               ├── GraphWindow.g.i.cs
│   │   │   │               └── TempPE
│   │   │   │                   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── GraphDemo.sln
│   │   │   └── GraphDemo.suo
│   │   └── ParallelLoop
│   │       ├── ParallelLoop
│   │       │   ├── ParallelLoop.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── ParallelLoop.exe
│   │       │   │       ├── ParallelLoop.pdb
│   │       │   │       ├── ParallelLoop.vshost.exe
│   │       │   │       └── ParallelLoop.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── x86
│   │       │           └── Debug
│   │       │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │               ├── ParallelLoop.csproj.FileListAbsolute.txt
│   │       │               ├── ParallelLoop.exe
│   │       │               ├── ParallelLoop.pdb
│   │       │               └── TempPE
│   │       ├── ParallelLoop.sln
│   │       └── ParallelLoop.suo
│   ├── Chapter 28
│   │   ├── CalculatePI
│   │   │   ├── CalculatePI
│   │   │   │   ├── CalculatePI.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── bin
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── CalculatePI.exe
│   │   │   │   │   │   ├── CalculatePI.pdb
│   │   │   │   │   │   └── CalculatePI.vshost.exe
│   │   │   │   │   └── Release
│   │   │   │   │       ├── CalculatePI.exe
│   │   │   │   │       ├── CalculatePI.pdb
│   │   │   │   │       ├── CalculatePI.vshost.exe
│   │   │   │   │       └── CalculatePI.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           ├── Debug
│   │   │   │           │   ├── CalculatePI.csproj.FileListAbsolute.txt
│   │   │   │           │   ├── CalculatePI.exe
│   │   │   │           │   ├── CalculatePI.pdb
│   │   │   │           │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │           │   └── TempPE
│   │   │   │           └── Release
│   │   │   │               ├── CalculatePI.csproj.FileListAbsolute.txt
│   │   │   │               ├── CalculatePI.exe
│   │   │   │               ├── CalculatePI.pdb
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               └── TempPE
│   │   │   ├── CalculatePI.sln
│   │   │   └── CalculatePI.suo
│   │   └── PLINQ
│   │       ├── PLINQ
│   │       │   ├── PLINQ.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── PLINQ.exe
│   │       │   │       ├── PLINQ.pdb
│   │       │   │       ├── PLINQ.vshost.exe
│   │       │   │       └── PLINQ.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── x86
│   │       │           └── Debug
│   │       │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │               ├── PLINQ.csproj.FileListAbsolute.txt
│   │       │               ├── PLINQ.exe
│   │       │               ├── PLINQ.pdb
│   │       │               └── TempPE
│   │       ├── PLINQ.sln
│   │       └── PLINQ.suo
│   ├── Chapter 29
│   │   ├── ProductClient
│   │   │   ├── ProductClient
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── ProductClient.csproj
│   │   │   │   ├── ProductClient.xaml
│   │   │   │   ├── ProductClient.xaml.cs
│   │   │   │   ├── ProductClientProxy.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Service References
│   │   │   │   │   └── ProductInformationService
│   │   │   │   │       ├── ProductInformation.wsdl
│   │   │   │   │       ├── Reference.cs
│   │   │   │   │       ├── Reference.svcmap
│   │   │   │   │       ├── Service.disco
│   │   │   │   │       ├── Service.xsd
│   │   │   │   │       ├── Service1.xsd
│   │   │   │   │       ├── configuration.svcinfo
│   │   │   │   │       └── configuration91.svcinfo
│   │   │   │   ├── app.config
│   │   │   │   ├── bin
│   │   │   │   │   ├── Debug
│   │   │   │   │   └── x86
│   │   │   │   │       └── Debug
│   │   │   │   │           ├── ProductClient.exe
│   │   │   │   │           ├── ProductClient.exe.config
│   │   │   │   │           ├── ProductClient.pdb
│   │   │   │   │           ├── ProductClient.vshost.exe
│   │   │   │   │           ├── ProductClient.vshost.exe.config
│   │   │   │   │           ├── ProductClient.vshost.exe.manifest
│   │   │   │   │           ├── ProductDetailsContracts.dll
│   │   │   │   │           └── ProductDetailsContracts.pdb
│   │   │   │   └── obj
│   │   │   │       ├── Debug
│   │   │   │       │   └── TempPE
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── App.g.cs
│   │   │   │               ├── App.g.i.cs
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── GenerateResource.read.1.tlog
│   │   │   │               ├── GenerateResource.write.1.tlog
│   │   │   │               ├── ProductClient.Properties.Resources.resources
│   │   │   │               ├── ProductClient.baml
│   │   │   │               ├── ProductClient.csproj.FileListAbsolute.txt
│   │   │   │               ├── ProductClient.exe
│   │   │   │               ├── ProductClient.g.cs
│   │   │   │               ├── ProductClient.g.i.cs
│   │   │   │               ├── ProductClient.g.resources
│   │   │   │               ├── ProductClient.pdb
│   │   │   │               ├── ProductClient_MarkupCompile.cache
│   │   │   │               ├── ProductClient_MarkupCompile.i.cache
│   │   │   │               └── TempPE
│   │   │   │                   ├── Properties.Resources.Designer.cs.dll
│   │   │   │                   └── Service References.ProductInformationService.Reference.cs.dll
│   │   │   ├── ProductClient.sln
│   │   │   └── ProductClient.suo
│   │   ├── ProductDetailsContracts
│   │   │   ├── ProductDetailsContracts
│   │   │   │   ├── IProductDetails.cs
│   │   │   │   ├── Product.cs
│   │   │   │   ├── ProductDetailsContracts.csproj
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── ProductDetailsContracts.dll
│   │   │   │   │       └── ProductDetailsContracts.pdb
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── ProductDetailsContracts.csproj.FileListAbsolute.txt
│   │   │   │               ├── ProductDetailsContracts.dll
│   │   │   │               ├── ProductDetailsContracts.pdb
│   │   │   │               └── TempPE
│   │   │   ├── ProductDetailsContracts.sln
│   │   │   └── ProductDetailsContracts.suo
│   │   ├── ProductDetailsService
│   │   │   ├── App_Code
│   │   │   │   └── ProductDetails.cs
│   │   │   ├── App_Data
│   │   │   ├── Bin
│   │   │   │   ├── ProductDetailsContracts.dll
│   │   │   │   ├── ProductDetailsContracts.dll.refresh
│   │   │   │   └── productdetailscontracts.pdb
│   │   │   ├── ProductDetailsService.sln
│   │   │   ├── ProductDetailsService.suo
│   │   │   ├── Service.svc
│   │   │   └── Web.config
│   │   ├── ProductInformationService
│   │   │   ├── App_Code
│   │   │   │   ├── IProductInformation.cs
│   │   │   │   └── ProductInformation.cs
│   │   │   ├── App_Data
│   │   │   ├── ProductInformationService.sln
│   │   │   ├── ProductInformationService.suo
│   │   │   ├── Service.svc
│   │   │   └── Web.config
│   │   └── Readme.txt
│   ├── Chapter 3
│   │   ├── DailyRate
│   │   │   ├── DailyRate
│   │   │   │   ├── DailyRate.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DailyRate.vshost.exe
│   │   │   │   │       └── DailyRate.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │           └── TempPE
│   │   │   ├── DailyRate.sln
│   │   │   └── DailyRate.suo
│   │   ├── DailyRate Using Optional Parameters
│   │   │   ├── DailyRate
│   │   │   │   ├── DailyRate.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   └── DailyRate.sln
│   │   └── Methods
│   │       ├── Methods
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── MainWindow.xaml
│   │       │   ├── MainWindow.xaml.cs
│   │       │   ├── Methods.csproj
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── Methods.exe
│   │       │   │       ├── Methods.pdb
│   │       │   │       ├── Methods.vshost.exe
│   │       │   │       └── Methods.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── App.g.cs
│   │       │           ├── App.g.i.cs
│   │       │           ├── DesignTimeResolveAssemblyReferences.cache
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           ├── MainWindow.baml
│   │       │           ├── MainWindow.g.cs
│   │       │           ├── MainWindow.g.i.cs
│   │       │           ├── Methods.Properties.Resources.resources
│   │       │           ├── Methods.csproj.FileListAbsolute.txt
│   │       │           ├── Methods.exe
│   │       │           ├── Methods.g.resources
│   │       │           ├── Methods.pdb
│   │       │           ├── Methods_MarkupCompile.cache
│   │       │           ├── Methods_MarkupCompile.i.cache
│   │       │           └── TempPE
│   │       │               └── Properties.Resources.Designer.cs.dll
│   │       ├── Methods.sln
│   │       └── Methods.suo
│   ├── Chapter 4
│   │   ├── Selection
│   │   │   ├── Selection
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── MainWindow.xaml
│   │   │   │   ├── MainWindow.xaml.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Selection.csproj
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── Selection.exe
│   │   │   │   │       ├── Selection.pdb
│   │   │   │   │       ├── Selection.vshost.exe
│   │   │   │   │       └── Selection.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── x86
│   │   │   │           └── Debug
│   │   │   │               ├── App.g.cs
│   │   │   │               ├── App.g.i.cs
│   │   │   │               ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │               ├── GenerateResource.read.1.tlog
│   │   │   │               ├── GenerateResource.write.1.tlog
│   │   │   │               ├── MainWindow.baml
│   │   │   │               ├── MainWindow.g.cs
│   │   │   │               ├── MainWindow.g.i.cs
│   │   │   │               ├── Selection.Properties.Resources.resources
│   │   │   │               ├── Selection.csproj.FileListAbsolute.txt
│   │   │   │               ├── Selection.exe
│   │   │   │               ├── Selection.g.resources
│   │   │   │               ├── Selection.pdb
│   │   │   │               ├── Selection_MarkupCompile.cache
│   │   │   │               ├── Selection_MarkupCompile.i.cache
│   │   │   │               └── TempPE
│   │   │   │                   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Selection.sln
│   │   │   └── Selection.suo
│   │   └── SwitchStatement
│   │       ├── SwitchStatement
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── MainWindow.xaml
│   │       │   ├── MainWindow.xaml.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── SwitchStatement.csproj
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── SwitchStatement.exe
│   │       │   │       ├── SwitchStatement.pdb
│   │       │   │       ├── SwitchStatement.vshost.exe
│   │       │   │       └── SwitchStatement.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── App.g.cs
│   │       │           ├── App.g.i.cs
│   │       │           ├── DesignTimeResolveAssemblyReferences.cache
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           ├── MainWindow.baml
│   │       │           ├── MainWindow.g.cs
│   │       │           ├── MainWindow.g.i.cs
│   │       │           ├── SwitchStatement.Properties.Resources.resources
│   │       │           ├── SwitchStatement.csproj.FileListAbsolute.txt
│   │       │           ├── SwitchStatement.exe
│   │       │           ├── SwitchStatement.g.resources
│   │       │           ├── SwitchStatement.pdb
│   │       │           ├── SwitchStatement_MarkupCompile.cache
│   │       │           ├── SwitchStatement_MarkupCompile.i.cache
│   │       │           └── TempPE
│   │       │               └── Properties.Resources.Designer.cs.dll
│   │       ├── SwitchStatement.sln
│   │       └── SwitchStatement.suo
│   ├── Chapter 5
│   │   ├── DoStatement
│   │   │   ├── DoStatement
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── DoStatement.csproj
│   │   │   │   ├── MainWindow.xaml
│   │   │   │   ├── MainWindow.xaml.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │       ├── DoStatement.exe
│   │   │   │   │       ├── DoStatement.pdb
│   │   │   │   │       ├── DoStatement.vshost.exe
│   │   │   │   │       └── DoStatement.vshost.exe.manifest
│   │   │   │   └── obj
│   │   │   │       └── Debug
│   │   │   │           ├── App.g.cs
│   │   │   │           ├── App.g.i.cs
│   │   │   │           ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │           ├── DoStatement.Properties.Resources.resources
│   │   │   │           ├── DoStatement.csproj.FileListAbsolute.txt
│   │   │   │           ├── DoStatement.exe
│   │   │   │           ├── DoStatement.g.resources
│   │   │   │           ├── DoStatement.pdb
│   │   │   │           ├── DoStatement_MarkupCompile.cache
│   │   │   │           ├── DoStatement_MarkupCompile.i.cache
│   │   │   │           ├── GenerateResource.read.1.tlog
│   │   │   │           ├── GenerateResource.write.1.tlog
│   │   │   │           ├── MainWindow.baml
│   │   │   │           ├── MainWindow.g.cs
│   │   │   │           ├── MainWindow.g.i.cs
│   │   │   │           └── TempPE
│   │   │   │               └── Properties.Resources.Designer.cs.dll
│   │   │   ├── DoStatement.sln
│   │   │   └── DoStatement.suo
│   │   └── WhileStatement
│   │       ├── WhileStatement
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── MainWindow.xaml
│   │       │   ├── MainWindow.xaml.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── WhileStatement.csproj
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── WhileStatement.exe
│   │       │   │       ├── WhileStatement.pdb
│   │       │   │       ├── WhileStatement.vshost.exe
│   │       │   │       └── WhileStatement.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── App.g.cs
│   │       │           ├── App.g.i.cs
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           ├── MainWindow.baml
│   │       │           ├── MainWindow.g.cs
│   │       │           ├── MainWindow.g.i.cs
│   │       │           ├── TempPE
│   │       │           │   └── Properties.Resources.Designer.cs.dll
│   │       │           ├── WhileStatement.Properties.Resources.resources
│   │       │           ├── WhileStatement.csproj.FileListAbsolute.txt
│   │       │           ├── WhileStatement.exe
│   │       │           ├── WhileStatement.g.resources
│   │       │           ├── WhileStatement.pdb
│   │       │           ├── WhileStatement_MarkupCompile.cache
│   │       │           └── WhileStatement_MarkupCompile.i.cache
│   │       ├── WhileStatement.sln
│   │       └── WhileStatement.suo
│   ├── Chapter 6
│   │   └── MathsOperators
│   │       ├── MathsOperators
│   │       │   ├── App.xaml
│   │       │   ├── App.xaml.cs
│   │       │   ├── MainWindow.xaml
│   │       │   ├── MainWindow.xaml.cs
│   │       │   ├── MathsOperators.csproj
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── MathsOperators.vshost.exe
│   │       │   │       └── MathsOperators.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── App.g.i.cs
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── MainWindow.g.i.cs
│   │       │           ├── MathsOperators_MarkupCompile.i.cache
│   │       │           └── TempPE
│   │       │               └── Properties.Resources.Designer.cs.dll
│   │       ├── MathsOperators.sln
│   │       └── MathsOperators.suo
│   ├── Chapter 7
│   │   └── Classes
│   │       ├── Classes
│   │       │   ├── Classes.csproj
│   │       │   ├── Point.cs
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── Classes.exe
│   │       │   │       ├── Classes.pdb
│   │       │   │       ├── Classes.vshost.exe
│   │       │   │       └── Classes.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── Classes.Properties.Resources.resources
│   │       │           ├── Classes.csproj.FileListAbsolute.txt
│   │       │           ├── Classes.exe
│   │       │           ├── Classes.pdb
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           └── TempPE
│   │       ├── Classes.sln
│   │       └── Classes.suo
│   ├── Chapter 8
│   │   └── Parameters
│   │       ├── Parameters
│   │       │   ├── Parameters.csproj
│   │       │   ├── Pass.cs
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   │   ├── AssemblyInfo.cs
│   │       │   │   ├── Resources.Designer.cs
│   │       │   │   ├── Resources.resx
│   │       │   │   ├── Settings.Designer.cs
│   │       │   │   └── Settings.settings
│   │       │   ├── WrappedInt.cs
│   │       │   ├── bin
│   │       │   │   └── Debug
│   │       │   │       ├── Parameters.exe
│   │       │   │       ├── Parameters.pdb
│   │       │   │       ├── Parameters.vshost.exe
│   │       │   │       └── Parameters.vshost.exe.manifest
│   │       │   └── obj
│   │       │       └── Debug
│   │       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │           ├── GenerateResource.read.1.tlog
│   │       │           ├── GenerateResource.write.1.tlog
│   │       │           ├── Parameters.Properties.Resources.resources
│   │       │           ├── Parameters.csproj.FileListAbsolute.txt
│   │       │           ├── Parameters.exe
│   │       │           ├── Parameters.pdb
│   │       │           └── TempPE
│   │       ├── Parameters.sln
│   │       └── Parameters.suo
│   └── Chapter 9
│       └── StructsAndEnums
│           ├── StructsAndEnums
│           │   ├── Date.cs
│           │   ├── Month.cs
│           │   ├── Program.cs
│           │   ├── Properties
│           │   │   ├── AssemblyInfo.cs
│           │   │   ├── Resources.Designer.cs
│           │   │   ├── Resources.resx
│           │   │   ├── Settings.Designer.cs
│           │   │   └── Settings.settings
│           │   ├── StructsAndEnums.csproj
│           │   ├── bin
│           │   │   └── Debug
│           │   │       ├── StructsAndEnums.exe
│           │   │       ├── StructsAndEnums.pdb
│           │   │       ├── StructsAndEnums.vshost.exe
│           │   │       └── StructsAndEnums.vshost.exe.manifest
│           │   └── obj
│           │       └── Debug
│           │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│           │           ├── GenerateResource.read.1.tlog
│           │           ├── GenerateResource.write.1.tlog
│           │           ├── StructsAndEnums.Properties.Resources.resources
│           │           ├── StructsAndEnums.csproj.FileListAbsolute.txt
│           │           ├── StructsAndEnums.exe
│           │           ├── StructsAndEnums.pdb
│           │           └── TempPE
│           ├── StructsAndEnums.sln
│           └── StructsAndEnums.suo
└── Visual Studio 2010 C# 从精通到入门 全部29个章节源码_VisualStudio2010C#StepbyStep.rar

474 directories, 1320 files


实例下载地址

Visual Studio 2010 C# 从精通到入门 全部29个章节源码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警