实例介绍
很方便,可以在vs2010中直接运行很好用的。可以节省很多时间
【实例截图】
【核心代码】
.
├── C#从入门到精通,例程源码_VisualCSharpStepByStep(从入门到精通).zip
└── 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
│ │ │ ├── ExtensionMethod.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── Util.cs
│ │ └── ExtensionMethod.sln
│ ├── ExtensionMethod - Complete
│ │ ├── ExtensionMethod
│ │ │ ├── ExtensionMethod.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── Util.cs
│ │ └── ExtensionMethod.sln
│ ├── 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
│ │ │ ├── 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
│ │ └── Drawing.sln
│ └── Drawing Using Interfaces - Complete
│ ├── 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
│ └── Drawing.sln
├── 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
│ │ └── UsingStatement.sln
│ └── UsingStatement - Complete
│ ├── 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
│ └── 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
│ │ ├── bin
│ │ │ └── Debug
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ ├── IteratorBinaryTree
│ │ ├── BinaryTree
│ │ │ ├── BinaryTree.csproj
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── Tree.cs
│ │ └── BinaryTree.sln
│ ├── IteratorBinaryTree - Complete
│ │ ├── BinaryTree
│ │ │ ├── BinaryTree.csproj
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Tree.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── BinaryTree.sln
│ │ └── BinaryTree.suo
│ └── 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
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── MathsOperators.exe
│ │ │ │ ├── MathsOperators.pdb
│ │ │ │ ├── MathsOperators.vshost.exe
│ │ │ │ └── MathsOperators.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
│ │ │ ├── MathsOperators.Properties.Resources.resources
│ │ │ ├── MathsOperators.csproj.FileListAbsolute.txt
│ │ │ ├── MathsOperators.exe
│ │ │ ├── MathsOperators.g.resources
│ │ │ ├── MathsOperators.pdb
│ │ │ ├── MathsOperators_MarkupCompile.cache
│ │ │ ├── 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
│ └── 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
│ │ │ ├── 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
│ └── ComplexNumbers - Complete
│ ├── ComplexNumbers
│ │ ├── Complex.cs
│ │ ├── ComplexNumbers.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ └── ComplexNumbers.sln
├── Chapter 22
│ ├── BellRingers - Complete
│ │ ├── 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
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── 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_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
│ └── bell.gif
├── 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
│ │ │ │ └── Members.txt
│ │ │ └── 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_Content.g.i.cs
│ │ │ ├── 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
│ ├── BellRingers - Complete
│ │ ├── 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
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── MainWindow.baml
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ └── TempPE
│ │ ├── BellRingers.sln
│ │ └── BellRingers.suo
│ ├── 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
│ │ │ ├── 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
│ └── 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
│ │ ├── 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.vshost.exe
│ │ │ │ └── LINQOrders.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── 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
├── Chapter 26
│ ├── 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
│ │ │ ├── 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
│ │ └── 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.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
│ │ └── 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
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── DailyRate.exe
│ │ │ │ ├── DailyRate.pdb
│ │ │ │ ├── DailyRate.vshost.exe
│ │ │ │ └── DailyRate.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── DailyRate.Properties.Resources.resources
│ │ │ ├── DailyRate.csproj.FileListAbsolute.txt
│ │ │ ├── DailyRate.exe
│ │ │ ├── DailyRate.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── DailyRate.sln
│ │ └── DailyRate.suo
│ ├── 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
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── DailyRate.exe
│ │ │ │ ├── DailyRate.pdb
│ │ │ │ ├── DailyRate.vshost.exe
│ │ │ │ └── DailyRate.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── DailyRate.Properties.Resources.resources
│ │ │ ├── DailyRate.csproj.FileListAbsolute.txt
│ │ │ ├── DailyRate.exe
│ │ │ ├── DailyRate.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ └── TempPE
│ │ ├── DailyRate.sln
│ │ └── DailyRate.suo
│ ├── DailyRate Using Optional Parameters - Complete
│ │ ├── 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
│ └── 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.vshost.exe
│ │ │ └── Methods.vshost.exe.manifest
│ │ └── obj
│ │ └── Debug
│ │ ├── App.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MainWindow.g.i.cs
│ │ ├── 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
│ ├── 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
407 directories, 1148 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论