在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Microsoft Visual C# 2010 Step by Step 例子源代码.rar

Microsoft Visual C# 2010 Step by Step 例子源代码.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.19M
  • 下载次数:5
  • 浏览次数:185
  • 发布时间:2021-12-11
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
Microsoft Visual C# 2010 Step by Step 例子源代码
【实例截图】
【核心代码】
4744302542940529486.rar
└── Visual CSharp 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 1
│   ├── TextHello - Complete
│   │   ├── TextHello
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── TextHello.csproj
│   │   └── TextHello.sln
│   └── WPFHello - Complete
│   ├── WPFHello
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── WPFHello.csproj
│   └── WPFHello.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
│   │   └── Cards.sln
│   ├── Cards Using Arrays - Complete
│   │   ├── 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
│   │   └── Cards.sln
│   ├── 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
│   │   └── Cards.sln
│   └── Cards Using Collections - Complete
│   ├── 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
│   └── Cards.sln
├── Chapter 11
│   ├── ParamsArray
│   │   ├── ParamsArray
│   │   │   ├── ParamsArray.csproj
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Util.cs
│   │   └── ParamsArray.sln
│   └── ParamsArray - Complete
│   ├── ParamsArray
│   │   ├── ParamsArray.csproj
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── Util.cs
│   └── ParamsArray.sln
├── Chapter 12
│   ├── ExtensionMethod
│   │   ├── ExtensionMethod
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── ExtensionMethod.vshost.exe
│   │   │   │   └── ExtensionMethod.vshost.exe.manifest
│   │   │   ├── ExtensionMethod.csproj
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   └── TempPE
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── Util.cs
│   │   ├── ExtensionMethod.sln
│   │   └── ExtensionMethod.suo
│   ├── ExtensionMethod - Complete
│   │   ├── ExtensionMethod
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── ExtensionMethod.vshost.exe
│   │   │   │   └── ExtensionMethod.vshost.exe.manifest
│   │   │   ├── ExtensionMethod.csproj
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   └── TempPE
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── Util.cs
│   │   ├── ExtensionMethod.sln
│   │   └── ExtensionMethod.suo
│   ├── Vehicles
│   │   ├── Vehicles
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── Vehicles.csproj
│   │   └── Vehicles.sln
│   └── Vehicles - Complete
│   ├── Vehicles
│   │   ├── Airplane.cs
│   │   ├── Car.cs
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Vehicle.cs
│   │   └── Vehicles.csproj
│   └── Vehicles.sln
├── Chapter 13
│   ├── Drawing
│   │   ├── Drawing
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── Drawing.csproj
│   │   │   ├── DrawingPad.xaml
│   │   │   ├── DrawingPad.xaml.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── Drawing.sln
│   ├── Drawing - Complete
│   │   ├── Drawing
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Drawing.exe
│   │   │   │   ├── Drawing.pdb
│   │   │   │   ├── Drawing.vshost.exe
│   │   │   │   └── Drawing.vshost.exe.manifest
│   │   │   ├── Circle.cs
│   │   │   ├── Drawing.csproj
│   │   │   ├── DrawingPad.xaml
│   │   │   ├── DrawingPad.xaml.cs
│   │   │   ├── DrawingShape.cs
│   │   │   ├── IColor.cs
│   │   │   ├── IDraw.cs
│   │   │   ├── obj
│   │   │   │   └── x86
│   │   │   │   └── Debug
│   │   │   │   ├── App.g.cs
│   │   │   │   ├── App.g.i.cs
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Drawing.csproj.FileListAbsolute.txt
│   │   │   │   ├── Drawing.exe
│   │   │   │   ├── Drawing.g.resources
│   │   │   │   ├── Drawing_MarkupCompile.cache
│   │   │   │   ├── Drawing_MarkupCompile.i.cache
│   │   │   │   ├── DrawingPad.baml
│   │   │   │   ├── DrawingPad.g.cs
│   │   │   │   ├── DrawingPad.g.i.cs
│   │   │   │   ├── Drawing.pdb
│   │   │   │   ├── Drawing.Properties.Resources.resources
│   │   │   │   ├── GenerateResource.read.1.tlog
│   │   │   │   ├── GenerateResource.write.1.tlog
│   │   │   │   └── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Square.cs
│   │   ├── Drawing.sln
│   │   └── Drawing.suo
│   └── Drawing Using Interfaces - Complete
│   ├── Drawing
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Drawing.exe
│   │   │   ├── Drawing.pdb
│   │   │   ├── Drawing.vshost.exe
│   │   │   └── Drawing.vshost.exe.manifest
│   │   ├── Circle.cs
│   │   ├── Drawing.csproj
│   │   ├── DrawingPad.xaml
│   │   ├── DrawingPad.xaml.cs
│   │   ├── IColor.cs
│   │   ├── IDraw.cs
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── App.g.cs
│   │   │   ├── App.g.i.cs
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Drawing.csproj.FileListAbsolute.txt
│   │   │   ├── Drawing.exe
│   │   │   ├── Drawing.g.resources
│   │   │   ├── Drawing_MarkupCompile.cache
│   │   │   ├── Drawing_MarkupCompile.i.cache
│   │   │   ├── DrawingPad.baml
│   │   │   ├── DrawingPad.g.cs
│   │   │   ├── DrawingPad.g.i.cs
│   │   │   ├── Drawing.pdb
│   │   │   ├── Drawing.Properties.Resources.resources
│   │   │   ├── GenerateResource.read.1.tlog
│   │   │   ├── GenerateResource.write.1.tlog
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── Square.cs
│   ├── Drawing.sln
│   └── Drawing.suo
├── Chapter 14
│   ├── UsingStatement
│   │   ├── UsingStatement
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── UsingStatement.vshost.exe
│   │   │   │   └── UsingStatement.vshost.exe.manifest
│   │   │   ├── MainWindow.xaml
│   │   │   ├── MainWindow.xaml.cs
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── App.g.i.cs
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── MainWindow.g.i.cs
│   │   │   │   ├── TempPE
│   │   │   │   └── UsingStatement_MarkupCompile.i.cache
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── UsingStatement.csproj
│   │   ├── UsingStatement.sln
│   │   └── UsingStatement.suo
│   └── UsingStatement - Complete
│   ├── UsingStatement
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── UsingStatement.vshost.exe
│   │   │   └── UsingStatement.vshost.exe.manifest
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── App.g.i.cs
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── MainWindow.g.i.cs
│   │   │   ├── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   └── UsingStatement_MarkupCompile.i.cache
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── UsingStatement.csproj
│   └── UsingStatement.sln
├── Chapter 15
│   ├── AutomaticProperties
│   │   ├── AutomaticProperties
│   │   │   ├── AutomaticProperties.csproj
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── AutomaticProperties.sln
│   ├── AutomaticProperties - Complete
│   │   ├── AutomaticProperties
│   │   │   ├── AutomaticProperties.csproj
│   │   │   ├── Polygon.cs
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── AutomaticProperties.sln
│   ├── 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
│   │   └── WindowProperties.sln
│   └── WindowProperties - Complete
│   ├── 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
│   └── WindowProperties.sln
├── 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
│   │   └── Indexers.sln
│   └── Indexers - Complete
│   ├── 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
│   └── Indexers.sln
├── Chapter 17
│   ├── Clock
│   │   ├── Clock
│   │   │   ├── AmericanClock.cs
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── Clock.csproj
│   │   │   ├── ClockWindow.xaml
│   │   │   ├── ClockWindow.xaml.cs
│   │   │   ├── EuropeanClock.cs
│   │   │   ├── JapaneseClock.cs
│   │   │   ├── LocalClock.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── Clock.sln
│   ├── Clock Using Delegates - Complete
│   │   ├── 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
│   │   └── Clock.sln
│   └── Clock Using Events - Complete
│   ├── 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
│   └── Clock.sln
├── Chapter 18
│   ├── BinaryTree - Complete
│   │   ├── BinaryTree
│   │   │   ├── BinaryTree.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── Tree.cs
│   │   └── BinaryTree.sln
│   ├── BinaryTreeTest - Complete
│   │   ├── BinaryTreeTest.csproj
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── BuildTree - Complete
│   │   ├── BuildTree
│   │   │   ├── BuildTree.csproj
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── BuildTree.sln
│   └── README.txt
├── Chapter 19
│   ├── BinaryTree
│   │   ├── BinaryTree
│   │   │   ├── BinaryTree.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── Tree.cs
│   │   └── BinaryTree.sln
│   ├── BinaryTree - Complete
│   │   ├── BinaryTree
│   │   │   ├── BinaryTree.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Tree.cs
│   │   │   └── TreeEnumerator.cs
│   │   └── BinaryTree.sln
│   ├── EnumeratorTest - Complete
│   │   ├── EnumeratorTest.csproj
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── IteratorBinaryTree
│   │   ├── BinaryTree
│   │   │   ├── BinaryTree.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── Tree.cs
│   │   └── BinaryTree.sln
│   ├── IteratorBinaryTree - Complete
│   │   ├── BinaryTree
│   │   │   ├── BinaryTree.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── Tree.cs
│   │   └── BinaryTree.sln
│   └── README.txt
├── 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
│   │   └── MathsOperators.sln
│   ├── 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
│   │   └── PrimitiveDataTypes.sln
│   └── PrimitiveDataTypes - Complete
│   ├── 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
│   └── PrimitiveDataTypes.sln
├── Chapter 20
│   ├── BinaryTree
│   │   ├── BinaryTree.csproj
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── Tree.cs
│   ├── QueryBinaryTree
│   │   ├── QueryBinaryTree
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── QueryBinaryTree.csproj
│   │   └── QueryBinaryTree.sln
│   └── QueryBinaryTree - Complete
│   ├── QueryBinaryTree
│   │   ├── Employee.cs
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── QueryBinaryTree.csproj
│   └── QueryBinaryTree.sln
├── Chapter 21
│   ├── ComplexNumbers
│   │   ├── ComplexNumbers
│   │   │   ├── ComplexNumbers.csproj
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── ComplexNumbers.sln
│   └── ComplexNumbers - Complete
│   ├── ComplexNumbers
│   │   ├── Complex.cs
│   │   ├── ComplexNumbers.csproj
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   └── ComplexNumbers.sln
├── Chapter 22
│   ├── bell.gif
│   └── BellRingers - Complete
│   ├── BellRingers
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── bell.gif
│   │   ├── BellRingers.csproj
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── BellRingers.sln
├── Chapter 23
│   ├── BellRingers
│   │   ├── BellRingers
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── bell.gif
│   │   │   ├── BellRingers.csproj
│   │   │   ├── MainWindow.xaml
│   │   │   ├── MainWindow.xaml.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── BellRingers.sln
│   ├── BellRingers - Complete
│   │   ├── BellRingers
│   │   │   ├── About.xaml
│   │   │   ├── About.xaml.cs
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── bell.gif
│   │   │   ├── 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
│   │   └── BellRingers.sln
│   ├── Face.BMP
│   ├── Note.BMP
│   └── Ring.BMP
├── 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
│   │   └── OrderTickets.sln
│   └── OrderTickets - Complete
│   ├── 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
│   └── OrderTickets.sln
├── Chapter 25
│   ├── instnwnd.sql
│   ├── LINQOrders
│   │   ├── LINQOrders
│   │   │   ├── LINQOrders.csproj
│   │   │   ├── LINQReport.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── LINQOrders.sln
│   ├── README.txt
│   └── ReportOrders
│   ├── ReportOrders
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Report.cs
│   │   └── ReportOrders.csproj
│   └── ReportOrders.sln
├── Chapter 26
│   ├── detach.sql
│   ├── README.txt
│   └── Suppliers - Complete
│   ├── 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
│   └── Suppliers.sln
├── 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
│   │   └── GraphDemo.sln
│   ├── 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
│   │   └── GraphDemo.sln
│   ├── GraphDemo Canceling Tasks - Complete
│   │   ├── 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
│   │   └── GraphDemo.sln
│   ├── GraphDemo Using Tasks - Complete
│   │   ├── 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
│   │   └── GraphDemo.sln
│   ├── 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
│   │   └── GraphDemo.sln
│   ├── GraphDemo Using Tasks that Return Results - Complete
│   │   ├── 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
│   │   └── GraphDemo.sln
│   ├── 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
│   │   └── GraphDemo.sln
│   ├── GraphDemo Using the Parallel Class - Complete
│   │   ├── 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
│   │   └── GraphDemo.sln
│   └── ParallelLoop
│   ├── ParallelLoop
│   │   ├── ParallelLoop.csproj
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   └── ParallelLoop.sln
├── Chapter 28
│   ├── CalculatePI
│   │   ├── CalculatePI
│   │   │   ├── CalculatePI.csproj
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── CalculatePI.sln
│   ├── CalculatePI - Complete
│   │   ├── CalculatePI
│   │   │   ├── CalculatePI.csproj
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── CalculatePI.sln
│   ├── PLINQ
│   │   ├── PLINQ
│   │   │   ├── PLINQ.csproj
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── PLINQ.sln
│   └── PLINQ - Complete
│   ├── PLINQ
│   │   ├── PLINQ.csproj
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   └── PLINQ.sln
├── Chapter 29
│   ├── ProductClient
│   │   ├── ProductClient
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── ProductClient.csproj
│   │   │   ├── ProductClient.xaml
│   │   │   ├── ProductClient.xaml.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── ProductClient.sln
│   ├── ProductClient - Complete
│   │   ├── ProductClient
│   │   │   ├── app.config
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── ProductClient.csproj
│   │   │   ├── ProductClientProxy.cs
│   │   │   ├── ProductClient.xaml
│   │   │   ├── ProductClient.xaml.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   └── Service References
│   │   │   └── ProductInformationService
│   │   │   ├── configuration91.svcinfo
│   │   │   ├── configuration.svcinfo
│   │   │   ├── ProductInformation.wsdl
│   │   │   ├── Reference.cs
│   │   │   ├── Reference.svcmap
│   │   │   ├── Service1.xsd
│   │   │   ├── Service.disco
│   │   │   └── Service.xsd
│   │   └── ProductClient.sln
│   ├── ProductDetailsContracts - Complete
│   │   ├── ProductDetailsContracts
│   │   │   ├── IProductDetails.cs
│   │   │   ├── Product.cs
│   │   │   ├── ProductDetailsContracts.csproj
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── ProductDetailsContracts.sln
│   ├── ProductDetailsService - Complete
│   │   ├── App_Code
│   │   │   └── ProductDetails.cs
│   │   ├── App_Data
│   │   ├── ProductDetailsService.sln
│   │   ├── Service.svc
│   │   └── Web.config
│   ├── ProductInformationService - Complete
│   │   ├── App_Code
│   │   │   ├── IProductInformation.cs
│   │   │   └── ProductInformation.cs
│   │   ├── App_Data
│   │   ├── ProductInformationService.sln
│   │   ├── 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
│   │   └── DailyRate.sln
│   ├── DailyRate - Complete
│   │   ├── DailyRate
│   │   │   ├── DailyRate.csproj
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── DailyRate.sln
│   ├── DailyRate Using Optional Parameters
│   │   ├── DailyRate
│   │   │   ├── DailyRate.csproj
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── DailyRate.sln
│   ├── DailyRate Using Optional Parameters - Complete
│   │   ├── 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
│   └── Methods.sln
├── 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
│   │   └── Selection.sln
│   ├── Selection - Complete
│   │   ├── 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
│   │   └── Selection.sln
│   ├── 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
│   │   └── SwitchStatement.sln
│   └── SwitchStatement - Complete
│   ├── 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
│   └── SwitchStatement.sln
├── 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
│   │   └── DoStatement.sln
│   ├── DoStatement - Complete
│   │   ├── 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
│   │   └── DoStatement.sln
│   ├── 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
│   │   └── WhileStatement.sln
│   └── WhileStatement - Complete
│   ├── 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
│   └── WhileStatement.sln
├── 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
│   │   └── MathsOperators.sln
│   └── MathsOperators - Complete
│   ├── 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
│   └── MathsOperators.sln
├── Chapter 7
│   ├── Classes
│   │   ├── Classes
│   │   │   ├── Classes.csproj
│   │   │   ├── Point.cs
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── Classes.sln
│   └── Classes - Complete
│   ├── Classes
│   │   ├── Classes.csproj
│   │   ├── Point.cs
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── Classes.sln
├── 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
│   │   └── Parameters.sln
│   └── Parameters - Complete
│   ├── Parameters
│   │   ├── Parameters.csproj
│   │   ├── Pass.cs
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── WrappedInt.cs
│   └── Parameters.sln
└── 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
│   └── StructsAndEnums.sln
└── StructsAndEnums - Complete
├── StructsAndEnums
│   ├── Date.cs
│   ├── Month.cs
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── StructsAndEnums.csproj
└── StructsAndEnums.sln

336 directories, 915 files

标签:

实例下载地址

Microsoft Visual C# 2010 Step by Step 例子源代码.rar

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警