├── .gitignore ├── Chapter02 ├── ConsoleApp1 │ ├── ConsoleApp1.sln │ └── ConsoleApp1 │ │ ├── ConsoleApp1.csproj │ │ └── Program.cs └── WpfApp1 │ ├── WpfApp1.sln │ └── WpfApp1 │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── WpfApp1.csproj │ └── WpfApp1.csproj.user ├── Chapter03 ├── Ch03Ex01 │ ├── Ch03Ex01.sln │ └── Ch03Ex01 │ │ ├── Ch03Ex01.csproj │ │ └── Program.cs └── Ch03Ex02 │ ├── Ch03Ex02.sln │ └── Ch03Ex02 │ ├── Ch03Ex02.csproj │ └── Program.cs ├── Chapter04 ├── Ch04Ex01 │ ├── Ch04Ex01.sln │ └── Ch04Ex01 │ │ ├── Ch04Ex01.csproj │ │ └── Program.cs ├── Ch04Ex02 │ ├── Ch04Ex02.sln │ └── Ch04Ex02 │ │ ├── Ch04Ex02.csproj │ │ └── Program.cs ├── Ch04Ex03 │ ├── Ch04Ex03.sln │ └── Ch04Ex03 │ │ ├── Ch04Ex03.csproj │ │ └── Program.cs ├── Ch04Ex04 │ ├── Ch04Ex04.sln │ └── Ch04Ex04 │ │ ├── Ch04Ex04.csproj │ │ └── Program.cs ├── Ch04Ex05 │ ├── Ch04Ex05.sln │ └── Ch04Ex05 │ │ ├── Ch04Ex05.csproj │ │ └── Program.cs └── readme.md ├── Chapter05 ├── Ch05Ex01 │ ├── Ch05Ex01.sln │ └── Ch05Ex01 │ │ ├── Ch05Ex01.csproj │ │ └── Program.cs ├── Ch05Ex02 │ ├── Ch05Ex02.sln │ └── Ch05Ex02 │ │ ├── Ch05Ex02.csproj │ │ └── Program.cs ├── Ch05Ex03 │ ├── Ch05Ex03.sln │ └── Ch05Ex03 │ │ ├── Ch05Ex03.csproj │ │ └── Program.cs ├── Ch05Ex04 │ ├── Ch05Ex04.sln │ └── Ch05Ex04 │ │ ├── Ch05Ex04.csproj │ │ └── Program.cs ├── Ch05Ex05 │ ├── Ch05Ex05.sln │ └── Ch05Ex05 │ │ ├── Ch05Ex05.csproj │ │ └── Program.cs ├── Ch05Ex06 │ ├── Ch05Ex06.sln │ └── Ch05Ex06 │ │ ├── Ch05Ex06.csproj │ │ └── Program.cs └── OverflowCheck │ ├── OverflowCheck.sln │ └── OverflowCheck │ ├── OverflowCheck.csproj │ └── Program.cs ├── Chapter06 ├── Ch06Ex01 │ ├── Ch06Ex01.sln │ └── Ch06Ex01 │ │ ├── Ch06Ex01.csproj │ │ └── Program.cs ├── Ch06Ex02 │ ├── Ch06Ex02.sln │ └── Ch06Ex02 │ │ ├── Ch06Ex02.csproj │ │ └── Program.cs ├── Ch06Ex03 │ ├── Ch06Ex03.sln │ └── Ch06Ex03 │ │ ├── Ch06Ex03.csproj │ │ └── Program.cs ├── Ch06Ex04 │ ├── Ch06Ex04.sln │ └── Ch06Ex04 │ │ ├── Ch06Ex04.csproj │ │ └── Program.cs ├── Ch06Ex05 │ ├── Ch06Ex05.sln │ └── Ch06Ex05 │ │ ├── Ch06Ex05.csproj │ │ └── Program.cs ├── LocalFunctions │ ├── LocalFunctions.sln │ └── LocalFunctions │ │ ├── LocalFunctions.csproj │ │ └── Program.cs ├── Tuple │ ├── Tuple.sln │ └── Tuple │ │ ├── Program.cs │ │ └── Tuple.csproj └── VariableScopeInLoops │ ├── VariableScopeInLoops.sln │ └── VariableScopeInLoops │ ├── Program.cs │ └── VariableScopeInLoops.csproj ├── Chapter07 ├── AssertionDemo │ ├── AssertionDemo.sln │ └── AssertionDemo │ │ ├── AssertionDemo.csproj │ │ └── Program.cs ├── Ch07Ex01 │ ├── Ch07Ex01.sln │ └── Ch07Ex01 │ │ ├── Ch07Ex01.csproj │ │ └── Program.cs ├── Ch07Ex01TracePoints │ ├── Ch07Ex01TracePoints.sln │ └── Ch07Ex01TracePoints │ │ ├── Ch07Ex01TracePoints.csproj │ │ └── Program.cs └── Ch07Ex02 │ ├── Ch07Ex02.sln │ └── Ch07Ex02 │ ├── Ch07Ex02.csproj │ └── Program.cs ├── Chapter08 ├── Ch08Ex01 │ ├── Ch08Ex01.sln │ └── Ch08Ex01 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Ch08Ex01.csproj │ │ ├── Ch08Ex01.csproj.user │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs └── readme.md ├── Chapter09 ├── Ch09ClassLib │ ├── Ch09ClassLib.sln │ └── Ch09ClassLib │ │ ├── Ch09ClassLib.csproj │ │ ├── MyExternalClass.cs │ │ └── MyInternalClass.cs ├── Ch09Ex01 │ ├── Ch09Ex01.sln │ └── Ch09Ex01 │ │ ├── Ch09Ex01.csproj │ │ ├── MyNewClass.cs │ │ └── Program.cs ├── Ch09Ex02 │ ├── Ch09Ex02.sln │ └── Ch09Ex02 │ │ ├── Ch09Ex02.csproj │ │ └── Program.cs └── Ch09Ex03 │ ├── Ch09Ex03.sln │ └── Ch09Ex03 │ ├── Ch09Ex03.csproj │ └── Program.cs ├── Chapter10 ├── Ch10CardClient │ ├── Ch10CardClient.csproj │ └── Program.cs ├── Ch10CardLib │ ├── Ch10CardLib.sln │ └── Ch10CardLib │ │ ├── Card.cs │ │ ├── Ch10CardLib.csproj │ │ ├── ClassDiagram1.cd │ │ ├── Deck.cs │ │ ├── Rank.cs │ │ └── Suit.cs ├── Ch10Ex01 │ ├── Ch10Ex01.sln │ └── Ch10Ex01 │ │ ├── Ch10Ex01.csproj │ │ ├── MyClass.cs │ │ └── Program.cs └── Ch10Ex02 │ ├── Ch10Ex02.sln │ └── Ch10Ex02 │ ├── Ch10Ex02.csproj │ └── Program.cs ├── Chapter11 ├── Ch11CardClient │ ├── Ch11CardClient.sln │ └── Ch11CardClient │ │ ├── Ch11CardClient.csproj │ │ └── Program.cs ├── Ch11CardLib │ ├── Ch11CardLib.sln │ └── Ch11CardLib │ │ ├── Card.cs │ │ ├── CardCollection.cs │ │ ├── Ch11CardLib.csproj │ │ ├── Deck.cs │ │ ├── Rank.cs │ │ └── Suit.cs ├── Ch11Ex01 │ ├── Ch11Ex01.sln │ └── Ch11Ex01 │ │ ├── Animal.cs │ │ ├── Ch11Ex01.csproj │ │ ├── Chicken.cs │ │ ├── Cow.cs │ │ └── Program.cs ├── Ch11Ex02 │ ├── Ch11Ex02.sln │ └── Ch11Ex02 │ │ ├── Animal.cs │ │ ├── AnimalCollection.cs │ │ ├── Ch11Ex02.csproj │ │ ├── Chicken.cs │ │ ├── Cow.cs │ │ └── Program.cs ├── Ch11Ex03 │ ├── Ch11Ex03.sln │ └── Ch11Ex03 │ │ ├── Ch11Ex03.csproj │ │ ├── Primes.cs │ │ └── Program.cs ├── Ch11Ex04 │ ├── Ch11Ex04.sln │ └── Ch11Ex04 │ │ ├── Ch11Ex04.csproj │ │ └── Program.cs ├── Ch11Ex05 │ ├── Ch11Ex05.sln │ └── Ch11Ex05 │ │ ├── Ch11Ex05.csproj │ │ ├── Person.cs │ │ ├── PersonNameComparer.cs │ │ └── Program.cs └── SimpleIterators │ ├── SimpleIterators.sln │ └── SimpleIterators │ ├── Program.cs │ └── SimpleIterators.csproj ├── Chapter12 ├── Ch12CardClient │ ├── Ch12CardClient.sln │ └── Ch12CardClient │ │ ├── Ch12CardClient.csproj │ │ └── Program.cs ├── Ch12CardLib │ ├── Ch12CardLib.sln │ └── Ch12CardLib │ │ ├── Card.cs │ │ ├── CardCollection.cs │ │ ├── Ch12CardLib.csproj │ │ ├── Deck.cs │ │ ├── Rank.cs │ │ └── Suit.cs ├── Ch12Ex01 │ ├── Ch12Ex01.sln │ └── Ch12Ex01 │ │ ├── Ch12Ex01.csproj │ │ ├── Program.cs │ │ └── Vector.cs ├── Ch12Ex02 │ ├── Ch12Ex02.sln │ └── Ch12Ex02 │ │ ├── Animal.cs │ │ ├── Ch12Ex02.csproj │ │ ├── Chicken.cs │ │ ├── Cow.cs │ │ └── Program.cs ├── Ch12Ex03 │ ├── Ch12Ex03.sln │ └── Ch12Ex03 │ │ ├── Ch12Ex03.csproj │ │ ├── Program.cs │ │ ├── Vector.cs │ │ ├── VectorDelegates.cs │ │ └── VectorList.cs ├── Ch12Ex04 │ ├── Ch12Ex04.sln │ └── Ch12Ex04 │ │ ├── Animal.cs │ │ ├── Ch12Ex04.csproj │ │ ├── Chicken.cs │ │ ├── Cow.cs │ │ ├── Farm.cs │ │ ├── Program.cs │ │ └── SuperCow.cs └── VarianceDemo │ ├── VarianceDemo.sln │ └── VarianceDemo │ ├── Animal.cs │ ├── AnimalNameLengthComparer.cs │ ├── Chicken.cs │ ├── Cow.cs │ ├── IGrassMuncher.cs │ ├── IMethaneProducer.cs │ ├── Program.cs │ ├── SuperCow.cs │ └── VarianceDemo.csproj ├── Chapter13 ├── Ch13CardClient │ ├── Ch13CardClient.sln │ └── Ch13CardClient │ │ ├── Ch13CardClient.csproj │ │ ├── Game.cs │ │ ├── Player.cs │ │ └── Program.cs ├── Ch13CardLib │ ├── Ch13CardLib.sln │ └── Ch13CardLib │ │ ├── Card.cs │ │ ├── CardOutOfRangeException.cs │ │ ├── Cards.cs │ │ ├── Ch13CardLib.csproj │ │ ├── Deck.cs │ │ ├── Rank.cs │ │ └── Suit.cs ├── Ch13Ex01 │ ├── Ch13Ex01.sln │ └── Ch13Ex01 │ │ ├── Ch13Ex01.csproj │ │ └── Program.cs ├── Ch13Ex02 │ ├── Ch13Ex02.sln │ └── Ch13Ex02 │ │ ├── Ch13Ex02.csproj │ │ ├── Connection.cs │ │ ├── Display.cs │ │ └── Program.cs ├── Ch13Ex03 │ ├── Ch13Ex03.sln │ └── Ch13Ex03 │ │ ├── Ch13Ex03.csproj │ │ ├── Connection.cs │ │ ├── Display.cs │ │ ├── MessageArrivedEventArgs.cs │ │ └── Program.cs ├── Ch13Ex04 │ ├── Ch13Ex04.sln │ └── Ch13Ex04 │ │ ├── Animal.cs │ │ ├── Ch13Ex04.csproj │ │ ├── Chicken.cs │ │ ├── Cow.cs │ │ ├── Farm.cs │ │ ├── Program.cs │ │ └── SuperCow.cs ├── Ch13Ex05 │ ├── Ch13Ex05.sln │ └── Ch13Ex05 │ │ ├── Ch13Ex05.csproj │ │ └── Program.cs ├── Ch13Ex06 │ ├── Ch13Ex06.sln │ └── Ch13Ex06 │ │ ├── Ch13Ex06.csproj │ │ └── Program.cs ├── Ch13Ex07 │ ├── Ch13Ex07.sln │ └── Ch13Ex07 │ │ ├── Ch13Ex07.csproj │ │ ├── Program.cs │ │ └── WordProcessor.cs ├── Ch13Ex08 │ ├── Ch13Ex08.sln │ └── Ch13Ex08 │ │ ├── Ch13Ex08.csproj │ │ └── Program.cs ├── Ch13Ex09 │ ├── Ch13Ex09.sln │ └── Ch13Ex09 │ │ ├── Ch13Ex09.csproj │ │ └── Program.cs └── CustomAttributes │ ├── CustomAttributes.sln │ └── CustomAttributes │ ├── CustomAttributes.csproj │ └── Program.cs ├── Chapter14 ├── Compressor │ ├── Compressor.csproj │ ├── Compressor.sln │ └── Program.cs ├── FileWatch │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── FileWatch.csproj │ ├── FileWatch.sln │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs ├── ReadFile │ ├── Program.cs │ ├── ReadFile.csproj │ └── ReadFile.sln ├── StreamRead │ ├── Program.cs │ ├── StreamRead.csproj │ └── StreamRead.sln ├── StreamWrite │ ├── Program.cs │ ├── StreamWrite.csproj │ └── StreamWrite.sln └── WriteFile │ ├── Program.cs │ ├── WriteFile.csproj │ └── WriteFile.sln ├── Chapter15 ├── LoopThroughXmlDocument │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── LoopThroughXmlDocument.csproj │ ├── LoopThroughXmlDocument.sln │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs ├── SerializeJSON │ ├── Program.cs │ ├── SerializeJSON.csproj │ └── SerializeJSON.sln ├── XML and Schemas │ ├── Books.json │ ├── Books.xml │ ├── Elements.xml │ ├── GhostStories.xml │ └── GhostStories.xsd └── XPathQuery │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── XPathQuery.csproj │ └── XPathQuery.sln ├── Chapter16 ├── BeginningCSharpAndDotNET_16_10_GroupQuery │ ├── BeginningCSharpAndDotNET_16_10_GroupQuery.csproj │ ├── BeginningCSharpAndDotNET_16_10_GroupQuery.sln │ └── Program.cs ├── BeginningCSharpAndDotNET_16_11_JoinQuery │ ├── BeginningCSharpAndDotNET_16_11_JoinQuery.csproj │ ├── BeginningCSharpAndDotNET_16_11_JoinQuery.sln │ └── Program.cs ├── BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors │ ├── BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors.csproj │ ├── BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors.sln │ └── Program.cs ├── BeginningCSharpAndDotNET_16_2_XMLFragments │ ├── .vs │ │ └── BeginningCSharpAndDotNET_16_2_XMLFragments │ │ │ └── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ ├── BeginningCSharpAndDotNET_16_2_XMLFragments.csproj │ ├── BeginningCSharpAndDotNET_16_2_XMLFragments.sln │ ├── Program.cs │ └── fragment.xml ├── BeginningCSharpAndDotNET_16_3_QuerySyntax │ ├── BeginningCSharpAndDotNET_16_3_QuerySyntax.csproj │ ├── BeginningCSharpAndDotNET_16_3_QuerySyntax.sln │ └── Program.cs ├── BeginningCSharpAndDotNET_16_4_MethodSyntax │ ├── BeginningCSharpAndDotNET_16_4_MethodSyntax.csproj │ ├── BeginningCSharpAndDotNET_16_4_MethodSyntax.sln │ └── Program.cs ├── BeginningCSharpAndDotNET_16_5_OrderQueryResults │ ├── BeginningCSharpAndDotNET_16_5_OrderQueryResults.csproj │ ├── BeginningCSharpAndDotNET_16_5_OrderQueryResults.sln │ └── Program.cs ├── BeginningCSharpAndDotNET_16_6_LargeNumberQuery │ ├── BeginningCSharpAndDotNET_16_6_LargeNumberQuery.csproj │ ├── BeginningCSharpAndDotNET_16_6_LargeNumberQuery.sln │ └── Program.cs ├── BeginningCSharpAndDotNET_16_7_NumericAggregates │ ├── BeginningCSharpAndDotNET_16_7_NumericAggregates.csproj │ ├── BeginningCSharpAndDotNET_16_7_NumericAggregates.sln │ └── Program.cs ├── BeginningCSharpAndDotNET_16_8_SelectDistinctQuery │ ├── BeginningCSharpAndDotNET_16_8_SelectDistinctQuery.csproj │ ├── BeginningCSharpAndDotNET_16_8_SelectDistinctQuery.sln │ └── Program.cs └── BeginningCSharpAndDotNET_16_9_MultiLevelOrdering │ ├── BeginningCSharpAndDotNET_16_9_MultiLevelOrdering.csproj │ ├── BeginningCSharpAndDotNET_16_9_MultiLevelOrdering.sln │ └── Program.cs ├── Chapter17 ├── BeginningCSharpAndDotNet_17_1_CodeFirstDatabase │ ├── BeginningCSharpAndDotNet_17_1_CodeFirstDatabase.csproj │ ├── BeginningCSharpAndDotNet_17_1_CodeFirstDatabase.sln │ ├── Migrations │ │ ├── 20210318013734_Initial.Designer.cs │ │ ├── 20210318013734_Initial.cs │ │ ├── 20210321220025_StoresAndStocks.Designer.cs │ │ ├── 20210321220025_StoresAndStocks.cs │ │ └── BookContextModelSnapshot.cs │ ├── Program - Copy.cs │ └── Program.cs ├── BeginningCSharpAndDotNet_17_2_XMLfromDatabase │ ├── BeginningCSharpAndDotNet_17_2_XMLfromDatabase.csproj │ ├── BeginningCSharpAndDotNet_17_2_XMLfromDatabase.sln │ ├── Book.cs │ ├── BooksContext.cs │ ├── Program.cs │ ├── Stock.cs │ └── Store.cs └── Readme.md ├── Chapter18 ├── Ch18CardClientCore │ ├── Ch18CardClientCore.sln │ └── Ch18CardClientCore │ │ ├── Ch18CardClientCore.csproj │ │ └── Program.cs └── Ch18CardLibStandard │ ├── Ch18CardLibStandard.sln │ └── Ch18CardLibStandard │ ├── CardGame.cs │ ├── Ch18CardLibStandard.csproj │ └── Ch18CardLibStandard.xml ├── Chapter19 ├── Ch19Ex01 │ ├── Ch19Ex01.sln │ └── Ch19Ex01 │ │ ├── Cards │ │ ├── 0-1.PNG │ │ ├── 0-10.PNG │ │ ├── 0-11.PNG │ │ ├── 0-12.PNG │ │ ├── 0-13.PNG │ │ ├── 0-2.PNG │ │ ├── 0-3.PNG │ │ ├── 0-4.PNG │ │ ├── 0-5.PNG │ │ ├── 0-6.PNG │ │ ├── 0-7.PNG │ │ ├── 0-8.PNG │ │ ├── 0-9.PNG │ │ ├── 1-1.PNG │ │ ├── 1-10.PNG │ │ ├── 1-11.PNG │ │ ├── 1-12.PNG │ │ ├── 1-13.PNG │ │ ├── 1-2.PNG │ │ ├── 1-3.PNG │ │ ├── 1-4.PNG │ │ ├── 1-5.PNG │ │ ├── 1-6.PNG │ │ ├── 1-7.PNG │ │ ├── 1-8.PNG │ │ ├── 1-9.PNG │ │ ├── 2-1.PNG │ │ ├── 2-10.PNG │ │ ├── 2-11.PNG │ │ ├── 2-12.PNG │ │ ├── 2-13.PNG │ │ ├── 2-2.PNG │ │ ├── 2-3.PNG │ │ ├── 2-4.PNG │ │ ├── 2-5.PNG │ │ ├── 2-6.PNG │ │ ├── 2-7.PNG │ │ ├── 2-8.PNG │ │ ├── 2-9.PNG │ │ ├── 3-1.PNG │ │ ├── 3-10.PNG │ │ ├── 3-11.PNG │ │ ├── 3-12.PNG │ │ ├── 3-13.PNG │ │ ├── 3-2.PNG │ │ ├── 3-3.PNG │ │ ├── 3-4.PNG │ │ ├── 3-5.PNG │ │ ├── 3-6.PNG │ │ ├── 3-7.PNG │ │ ├── 3-8.PNG │ │ └── 3-9.PNG │ │ ├── Ch19Ex01.csproj │ │ └── Program.cs └── Ch19Ex02 │ ├── Ch19Ex02.sln │ └── Ch19Ex02 │ ├── Ch19Ex02.csproj │ ├── Models │ └── CardGame.cs │ ├── Pages │ ├── Index.cshtml │ └── Index.cshtml.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Chapter20 ├── Ch20Ex01 │ ├── Ch20Ex01.sln │ └── Ch20Ex01 │ │ ├── Ch20Ex01.csproj │ │ ├── Ch20Ex01.csproj.user │ │ ├── Controllers │ │ └── HandOfCardsController.cs │ │ ├── Program.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── Ch20Ex02 │ ├── Ch20Ex02.sln │ └── Ch20Ex02 │ │ ├── App.razor │ │ ├── Ch20Ex02.csproj │ │ ├── Pages │ │ ├── Counter.razor │ │ ├── FetchData.razor │ │ └── Index.razor │ │ ├── Program.cs │ │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ └── SurveyPrompt.razor │ │ └── _Imports.razor ├── Ch20Ex03 │ ├── Ch20Ex03.sln │ └── Ch20Ex03 │ │ ├── Ch20Ex03.csproj │ │ ├── Ch20Ex03.csproj.user │ │ ├── IService1.cs │ │ ├── Service1.svc │ │ ├── Service1.svc.cs │ │ └── Web.config ├── Ch20Ex03Client │ ├── Ch20Ex03Client.csproj │ └── Program.cs ├── Ch20Ex04 │ ├── Ch20Ex04.sln │ └── Ch20Ex04 │ │ ├── Ch20Ex04.csproj │ │ ├── Ch20Ex04.csproj.user │ │ ├── GameService.svc │ │ ├── GameService.svc.cs │ │ └── Web.config ├── Ch20Ex04Client │ ├── App.config │ ├── Ch20Ex04Client.csproj │ └── Program.cs ├── Ch20Ex04Contracts │ ├── Ch20Ex04Contracts.csproj │ ├── IGameService.cs │ └── Player.cs ├── Ch20Ex05 │ ├── Ch20Ex05.sln │ └── Ch20Ex05 │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppControlService.cs │ │ ├── Ch20Ex05.csproj │ │ ├── IAppControlService.cs │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs ├── Ch20Ex05Client │ ├── App.config │ ├── Ch20Ex05Client.csproj │ └── Program.cs └── Readme.md ├── Chapter21 ├── BensCards.WPF │ ├── AboutWindow.xaml │ ├── AboutWindow.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── BensCards.WPF.csproj │ ├── BensCards.WPF.csproj.user │ ├── BensCards.WPF.sln │ ├── CardControl.xaml │ ├── CardControl.xaml.cs │ ├── CardsInHandControl.xaml │ ├── CardsInHandControl.xaml.cs │ ├── ControlResources.xaml │ ├── GameClientWindow.xaml │ ├── GameClientWindow.xaml.cs │ ├── GameDecksControl.xaml │ ├── GameDecksControl.xaml.cs │ ├── GameOptions.cs │ ├── GameViewModel.cs │ ├── Images │ │ ├── Banner.png │ │ ├── Clubs.png │ │ ├── Diamonds.png │ │ ├── Hearts.png │ │ ├── Spades.png │ │ └── base_floppydisk_32.png │ ├── InversedBoolConverter.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── NumberOfPlayers.cs │ ├── OptionsWindow.xaml │ ├── OptionsWindow.xaml.cs │ ├── RankNameConverter.cs │ ├── StartGameWindow.xaml │ └── StartGameWindow.xaml.cs ├── Ch13CardLib │ ├── Card.cs │ ├── CardEventArgs.cs │ ├── CardOutOfRangeException.cs │ ├── Cards.cs │ ├── Ch13CardLib.csproj │ ├── ComputerPlayer.cs │ ├── ComputerSkillLevel.cs │ ├── Deck.cs │ ├── Player.cs │ ├── PlayerEventArgs.cs │ ├── PlayerState.cs │ ├── Rank.cs │ └── Suit.cs ├── Ch21Ex01 │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Ch21Ex01.csproj │ ├── Ch21Ex01.sln │ ├── ImageButton.xaml │ ├── ImageButton.xaml.cs │ ├── Images │ │ └── Delete_black_32x32.png │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs └── LayoutExamples │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Canvas.xaml │ ├── Canvas.xaml.cs │ ├── DockPanels.xaml │ ├── DockPanels.xaml.cs │ ├── LayoutExamples.csproj │ ├── LayoutExamples.csproj.user │ ├── LayoutExamples.sln │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── StackPanels.xaml │ ├── StackPanels.xaml.cs │ ├── WrapPanel.xaml │ └── WrapPanel.xaml.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter02/ConsoleApp1/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/ConsoleApp1/ConsoleApp1.sln -------------------------------------------------------------------------------- /Chapter02/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /Chapter02/ConsoleApp1/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/ConsoleApp1/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /Chapter02/WpfApp1/WpfApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/WpfApp1/WpfApp1.sln -------------------------------------------------------------------------------- /Chapter02/WpfApp1/WpfApp1/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/WpfApp1/WpfApp1/App.xaml -------------------------------------------------------------------------------- /Chapter02/WpfApp1/WpfApp1/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/WpfApp1/WpfApp1/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/WpfApp1/WpfApp1/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/WpfApp1/WpfApp1/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/WpfApp1/WpfApp1/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/WpfApp1/WpfApp1/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/WpfApp1/WpfApp1/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/WpfApp1/WpfApp1/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/WpfApp1/WpfApp1/WpfApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/WpfApp1/WpfApp1/WpfApp1.csproj -------------------------------------------------------------------------------- /Chapter02/WpfApp1/WpfApp1/WpfApp1.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter02/WpfApp1/WpfApp1/WpfApp1.csproj.user -------------------------------------------------------------------------------- /Chapter03/Ch03Ex01/Ch03Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter03/Ch03Ex01/Ch03Ex01.sln -------------------------------------------------------------------------------- /Chapter03/Ch03Ex01/Ch03Ex01/Ch03Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter03/Ch03Ex01/Ch03Ex01/Ch03Ex01.csproj -------------------------------------------------------------------------------- /Chapter03/Ch03Ex01/Ch03Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter03/Ch03Ex01/Ch03Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter03/Ch03Ex02/Ch03Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter03/Ch03Ex02/Ch03Ex02.sln -------------------------------------------------------------------------------- /Chapter03/Ch03Ex02/Ch03Ex02/Ch03Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter03/Ch03Ex02/Ch03Ex02/Ch03Ex02.csproj -------------------------------------------------------------------------------- /Chapter03/Ch03Ex02/Ch03Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter03/Ch03Ex02/Ch03Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter04/Ch04Ex01/Ch04Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex01/Ch04Ex01.sln -------------------------------------------------------------------------------- /Chapter04/Ch04Ex01/Ch04Ex01/Ch04Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex01/Ch04Ex01/Ch04Ex01.csproj -------------------------------------------------------------------------------- /Chapter04/Ch04Ex01/Ch04Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex01/Ch04Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter04/Ch04Ex02/Ch04Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex02/Ch04Ex02.sln -------------------------------------------------------------------------------- /Chapter04/Ch04Ex02/Ch04Ex02/Ch04Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex02/Ch04Ex02/Ch04Ex02.csproj -------------------------------------------------------------------------------- /Chapter04/Ch04Ex02/Ch04Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex02/Ch04Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter04/Ch04Ex03/Ch04Ex03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex03/Ch04Ex03.sln -------------------------------------------------------------------------------- /Chapter04/Ch04Ex03/Ch04Ex03/Ch04Ex03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex03/Ch04Ex03/Ch04Ex03.csproj -------------------------------------------------------------------------------- /Chapter04/Ch04Ex03/Ch04Ex03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex03/Ch04Ex03/Program.cs -------------------------------------------------------------------------------- /Chapter04/Ch04Ex04/Ch04Ex04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex04/Ch04Ex04.sln -------------------------------------------------------------------------------- /Chapter04/Ch04Ex04/Ch04Ex04/Ch04Ex04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex04/Ch04Ex04/Ch04Ex04.csproj -------------------------------------------------------------------------------- /Chapter04/Ch04Ex04/Ch04Ex04/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex04/Ch04Ex04/Program.cs -------------------------------------------------------------------------------- /Chapter04/Ch04Ex05/Ch04Ex05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex05/Ch04Ex05.sln -------------------------------------------------------------------------------- /Chapter04/Ch04Ex05/Ch04Ex05/Ch04Ex05.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex05/Ch04Ex05/Ch04Ex05.csproj -------------------------------------------------------------------------------- /Chapter04/Ch04Ex05/Ch04Ex05/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter04/Ch04Ex05/Ch04Ex05/Program.cs -------------------------------------------------------------------------------- /Chapter04/readme.md: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /Chapter05/Ch05Ex01/Ch05Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex01/Ch05Ex01.sln -------------------------------------------------------------------------------- /Chapter05/Ch05Ex01/Ch05Ex01/Ch05Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex01/Ch05Ex01/Ch05Ex01.csproj -------------------------------------------------------------------------------- /Chapter05/Ch05Ex01/Ch05Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex01/Ch05Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter05/Ch05Ex02/Ch05Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex02/Ch05Ex02.sln -------------------------------------------------------------------------------- /Chapter05/Ch05Ex02/Ch05Ex02/Ch05Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex02/Ch05Ex02/Ch05Ex02.csproj -------------------------------------------------------------------------------- /Chapter05/Ch05Ex02/Ch05Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex02/Ch05Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter05/Ch05Ex03/Ch05Ex03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex03/Ch05Ex03.sln -------------------------------------------------------------------------------- /Chapter05/Ch05Ex03/Ch05Ex03/Ch05Ex03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex03/Ch05Ex03/Ch05Ex03.csproj -------------------------------------------------------------------------------- /Chapter05/Ch05Ex03/Ch05Ex03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex03/Ch05Ex03/Program.cs -------------------------------------------------------------------------------- /Chapter05/Ch05Ex04/Ch05Ex04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex04/Ch05Ex04.sln -------------------------------------------------------------------------------- /Chapter05/Ch05Ex04/Ch05Ex04/Ch05Ex04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex04/Ch05Ex04/Ch05Ex04.csproj -------------------------------------------------------------------------------- /Chapter05/Ch05Ex04/Ch05Ex04/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex04/Ch05Ex04/Program.cs -------------------------------------------------------------------------------- /Chapter05/Ch05Ex05/Ch05Ex05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex05/Ch05Ex05.sln -------------------------------------------------------------------------------- /Chapter05/Ch05Ex05/Ch05Ex05/Ch05Ex05.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex05/Ch05Ex05/Ch05Ex05.csproj -------------------------------------------------------------------------------- /Chapter05/Ch05Ex05/Ch05Ex05/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex05/Ch05Ex05/Program.cs -------------------------------------------------------------------------------- /Chapter05/Ch05Ex06/Ch05Ex06.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex06/Ch05Ex06.sln -------------------------------------------------------------------------------- /Chapter05/Ch05Ex06/Ch05Ex06/Ch05Ex06.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex06/Ch05Ex06/Ch05Ex06.csproj -------------------------------------------------------------------------------- /Chapter05/Ch05Ex06/Ch05Ex06/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/Ch05Ex06/Ch05Ex06/Program.cs -------------------------------------------------------------------------------- /Chapter05/OverflowCheck/OverflowCheck.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/OverflowCheck/OverflowCheck.sln -------------------------------------------------------------------------------- /Chapter05/OverflowCheck/OverflowCheck/OverflowCheck.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/OverflowCheck/OverflowCheck/OverflowCheck.csproj -------------------------------------------------------------------------------- /Chapter05/OverflowCheck/OverflowCheck/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter05/OverflowCheck/OverflowCheck/Program.cs -------------------------------------------------------------------------------- /Chapter06/Ch06Ex01/Ch06Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex01/Ch06Ex01.sln -------------------------------------------------------------------------------- /Chapter06/Ch06Ex01/Ch06Ex01/Ch06Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex01/Ch06Ex01/Ch06Ex01.csproj -------------------------------------------------------------------------------- /Chapter06/Ch06Ex01/Ch06Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex01/Ch06Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter06/Ch06Ex02/Ch06Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex02/Ch06Ex02.sln -------------------------------------------------------------------------------- /Chapter06/Ch06Ex02/Ch06Ex02/Ch06Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex02/Ch06Ex02/Ch06Ex02.csproj -------------------------------------------------------------------------------- /Chapter06/Ch06Ex02/Ch06Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex02/Ch06Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter06/Ch06Ex03/Ch06Ex03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex03/Ch06Ex03.sln -------------------------------------------------------------------------------- /Chapter06/Ch06Ex03/Ch06Ex03/Ch06Ex03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex03/Ch06Ex03/Ch06Ex03.csproj -------------------------------------------------------------------------------- /Chapter06/Ch06Ex03/Ch06Ex03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex03/Ch06Ex03/Program.cs -------------------------------------------------------------------------------- /Chapter06/Ch06Ex04/Ch06Ex04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex04/Ch06Ex04.sln -------------------------------------------------------------------------------- /Chapter06/Ch06Ex04/Ch06Ex04/Ch06Ex04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex04/Ch06Ex04/Ch06Ex04.csproj -------------------------------------------------------------------------------- /Chapter06/Ch06Ex04/Ch06Ex04/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex04/Ch06Ex04/Program.cs -------------------------------------------------------------------------------- /Chapter06/Ch06Ex05/Ch06Ex05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex05/Ch06Ex05.sln -------------------------------------------------------------------------------- /Chapter06/Ch06Ex05/Ch06Ex05/Ch06Ex05.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex05/Ch06Ex05/Ch06Ex05.csproj -------------------------------------------------------------------------------- /Chapter06/Ch06Ex05/Ch06Ex05/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Ch06Ex05/Ch06Ex05/Program.cs -------------------------------------------------------------------------------- /Chapter06/LocalFunctions/LocalFunctions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/LocalFunctions/LocalFunctions.sln -------------------------------------------------------------------------------- /Chapter06/LocalFunctions/LocalFunctions/LocalFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/LocalFunctions/LocalFunctions/LocalFunctions.csproj -------------------------------------------------------------------------------- /Chapter06/LocalFunctions/LocalFunctions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/LocalFunctions/LocalFunctions/Program.cs -------------------------------------------------------------------------------- /Chapter06/Tuple/Tuple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Tuple/Tuple.sln -------------------------------------------------------------------------------- /Chapter06/Tuple/Tuple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Tuple/Tuple/Program.cs -------------------------------------------------------------------------------- /Chapter06/Tuple/Tuple/Tuple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/Tuple/Tuple/Tuple.csproj -------------------------------------------------------------------------------- /Chapter06/VariableScopeInLoops/VariableScopeInLoops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/VariableScopeInLoops/VariableScopeInLoops.sln -------------------------------------------------------------------------------- /Chapter06/VariableScopeInLoops/VariableScopeInLoops/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/VariableScopeInLoops/VariableScopeInLoops/Program.cs -------------------------------------------------------------------------------- /Chapter06/VariableScopeInLoops/VariableScopeInLoops/VariableScopeInLoops.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter06/VariableScopeInLoops/VariableScopeInLoops/VariableScopeInLoops.csproj -------------------------------------------------------------------------------- /Chapter07/AssertionDemo/AssertionDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/AssertionDemo/AssertionDemo.sln -------------------------------------------------------------------------------- /Chapter07/AssertionDemo/AssertionDemo/AssertionDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/AssertionDemo/AssertionDemo/AssertionDemo.csproj -------------------------------------------------------------------------------- /Chapter07/AssertionDemo/AssertionDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/AssertionDemo/AssertionDemo/Program.cs -------------------------------------------------------------------------------- /Chapter07/Ch07Ex01/Ch07Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/Ch07Ex01/Ch07Ex01.sln -------------------------------------------------------------------------------- /Chapter07/Ch07Ex01/Ch07Ex01/Ch07Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/Ch07Ex01/Ch07Ex01/Ch07Ex01.csproj -------------------------------------------------------------------------------- /Chapter07/Ch07Ex01/Ch07Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/Ch07Ex01/Ch07Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter07/Ch07Ex01TracePoints/Ch07Ex01TracePoints.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/Ch07Ex01TracePoints/Ch07Ex01TracePoints.sln -------------------------------------------------------------------------------- /Chapter07/Ch07Ex01TracePoints/Ch07Ex01TracePoints/Ch07Ex01TracePoints.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/Ch07Ex01TracePoints/Ch07Ex01TracePoints/Ch07Ex01TracePoints.csproj -------------------------------------------------------------------------------- /Chapter07/Ch07Ex01TracePoints/Ch07Ex01TracePoints/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/Ch07Ex01TracePoints/Ch07Ex01TracePoints/Program.cs -------------------------------------------------------------------------------- /Chapter07/Ch07Ex02/Ch07Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/Ch07Ex02/Ch07Ex02.sln -------------------------------------------------------------------------------- /Chapter07/Ch07Ex02/Ch07Ex02/Ch07Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/Ch07Ex02/Ch07Ex02/Ch07Ex02.csproj -------------------------------------------------------------------------------- /Chapter07/Ch07Ex02/Ch07Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter07/Ch07Ex02/Ch07Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter08/Ch08Ex01/Ch08Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter08/Ch08Ex01/Ch08Ex01.sln -------------------------------------------------------------------------------- /Chapter08/Ch08Ex01/Ch08Ex01/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter08/Ch08Ex01/Ch08Ex01/App.xaml -------------------------------------------------------------------------------- /Chapter08/Ch08Ex01/Ch08Ex01/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter08/Ch08Ex01/Ch08Ex01/App.xaml.cs -------------------------------------------------------------------------------- /Chapter08/Ch08Ex01/Ch08Ex01/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter08/Ch08Ex01/Ch08Ex01/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter08/Ch08Ex01/Ch08Ex01/Ch08Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter08/Ch08Ex01/Ch08Ex01/Ch08Ex01.csproj -------------------------------------------------------------------------------- /Chapter08/Ch08Ex01/Ch08Ex01/Ch08Ex01.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter08/Ch08Ex01/Ch08Ex01/Ch08Ex01.csproj.user -------------------------------------------------------------------------------- /Chapter08/Ch08Ex01/Ch08Ex01/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter08/Ch08Ex01/Ch08Ex01/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter08/Ch08Ex01/Ch08Ex01/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter08/Ch08Ex01/Ch08Ex01/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter08/readme.md: -------------------------------------------------------------------------------- 1 | Chapter 8: Introduction to Object-Oriented Programming 2 | -------------------------------------------------------------------------------- /Chapter09/Ch09ClassLib/Ch09ClassLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09ClassLib/Ch09ClassLib.sln -------------------------------------------------------------------------------- /Chapter09/Ch09ClassLib/Ch09ClassLib/Ch09ClassLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09ClassLib/Ch09ClassLib/Ch09ClassLib.csproj -------------------------------------------------------------------------------- /Chapter09/Ch09ClassLib/Ch09ClassLib/MyExternalClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09ClassLib/Ch09ClassLib/MyExternalClass.cs -------------------------------------------------------------------------------- /Chapter09/Ch09ClassLib/Ch09ClassLib/MyInternalClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09ClassLib/Ch09ClassLib/MyInternalClass.cs -------------------------------------------------------------------------------- /Chapter09/Ch09Ex01/Ch09Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09Ex01/Ch09Ex01.sln -------------------------------------------------------------------------------- /Chapter09/Ch09Ex01/Ch09Ex01/Ch09Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09Ex01/Ch09Ex01/Ch09Ex01.csproj -------------------------------------------------------------------------------- /Chapter09/Ch09Ex01/Ch09Ex01/MyNewClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09Ex01/Ch09Ex01/MyNewClass.cs -------------------------------------------------------------------------------- /Chapter09/Ch09Ex01/Ch09Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09Ex01/Ch09Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter09/Ch09Ex02/Ch09Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09Ex02/Ch09Ex02.sln -------------------------------------------------------------------------------- /Chapter09/Ch09Ex02/Ch09Ex02/Ch09Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09Ex02/Ch09Ex02/Ch09Ex02.csproj -------------------------------------------------------------------------------- /Chapter09/Ch09Ex02/Ch09Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09Ex02/Ch09Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter09/Ch09Ex03/Ch09Ex03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09Ex03/Ch09Ex03.sln -------------------------------------------------------------------------------- /Chapter09/Ch09Ex03/Ch09Ex03/Ch09Ex03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09Ex03/Ch09Ex03/Ch09Ex03.csproj -------------------------------------------------------------------------------- /Chapter09/Ch09Ex03/Ch09Ex03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter09/Ch09Ex03/Ch09Ex03/Program.cs -------------------------------------------------------------------------------- /Chapter10/Ch10CardClient/Ch10CardClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10CardClient/Ch10CardClient.csproj -------------------------------------------------------------------------------- /Chapter10/Ch10CardClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10CardClient/Program.cs -------------------------------------------------------------------------------- /Chapter10/Ch10CardLib/Ch10CardLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10CardLib/Ch10CardLib.sln -------------------------------------------------------------------------------- /Chapter10/Ch10CardLib/Ch10CardLib/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10CardLib/Ch10CardLib/Card.cs -------------------------------------------------------------------------------- /Chapter10/Ch10CardLib/Ch10CardLib/Ch10CardLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10CardLib/Ch10CardLib/Ch10CardLib.csproj -------------------------------------------------------------------------------- /Chapter10/Ch10CardLib/Ch10CardLib/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10CardLib/Ch10CardLib/ClassDiagram1.cd -------------------------------------------------------------------------------- /Chapter10/Ch10CardLib/Ch10CardLib/Deck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10CardLib/Ch10CardLib/Deck.cs -------------------------------------------------------------------------------- /Chapter10/Ch10CardLib/Ch10CardLib/Rank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10CardLib/Ch10CardLib/Rank.cs -------------------------------------------------------------------------------- /Chapter10/Ch10CardLib/Ch10CardLib/Suit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10CardLib/Ch10CardLib/Suit.cs -------------------------------------------------------------------------------- /Chapter10/Ch10Ex01/Ch10Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10Ex01/Ch10Ex01.sln -------------------------------------------------------------------------------- /Chapter10/Ch10Ex01/Ch10Ex01/Ch10Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10Ex01/Ch10Ex01/Ch10Ex01.csproj -------------------------------------------------------------------------------- /Chapter10/Ch10Ex01/Ch10Ex01/MyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10Ex01/Ch10Ex01/MyClass.cs -------------------------------------------------------------------------------- /Chapter10/Ch10Ex01/Ch10Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10Ex01/Ch10Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter10/Ch10Ex02/Ch10Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10Ex02/Ch10Ex02.sln -------------------------------------------------------------------------------- /Chapter10/Ch10Ex02/Ch10Ex02/Ch10Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10Ex02/Ch10Ex02/Ch10Ex02.csproj -------------------------------------------------------------------------------- /Chapter10/Ch10Ex02/Ch10Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter10/Ch10Ex02/Ch10Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter11/Ch11CardClient/Ch11CardClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11CardClient/Ch11CardClient.sln -------------------------------------------------------------------------------- /Chapter11/Ch11CardClient/Ch11CardClient/Ch11CardClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11CardClient/Ch11CardClient/Ch11CardClient.csproj -------------------------------------------------------------------------------- /Chapter11/Ch11CardClient/Ch11CardClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11CardClient/Ch11CardClient/Program.cs -------------------------------------------------------------------------------- /Chapter11/Ch11CardLib/Ch11CardLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11CardLib/Ch11CardLib.sln -------------------------------------------------------------------------------- /Chapter11/Ch11CardLib/Ch11CardLib/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11CardLib/Ch11CardLib/Card.cs -------------------------------------------------------------------------------- /Chapter11/Ch11CardLib/Ch11CardLib/CardCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11CardLib/Ch11CardLib/CardCollection.cs -------------------------------------------------------------------------------- /Chapter11/Ch11CardLib/Ch11CardLib/Ch11CardLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11CardLib/Ch11CardLib/Ch11CardLib.csproj -------------------------------------------------------------------------------- /Chapter11/Ch11CardLib/Ch11CardLib/Deck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11CardLib/Ch11CardLib/Deck.cs -------------------------------------------------------------------------------- /Chapter11/Ch11CardLib/Ch11CardLib/Rank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11CardLib/Ch11CardLib/Rank.cs -------------------------------------------------------------------------------- /Chapter11/Ch11CardLib/Ch11CardLib/Suit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11CardLib/Ch11CardLib/Suit.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex01/Ch11Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex01/Ch11Ex01.sln -------------------------------------------------------------------------------- /Chapter11/Ch11Ex01/Ch11Ex01/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex01/Ch11Ex01/Animal.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex01/Ch11Ex01/Ch11Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex01/Ch11Ex01/Ch11Ex01.csproj -------------------------------------------------------------------------------- /Chapter11/Ch11Ex01/Ch11Ex01/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex01/Ch11Ex01/Chicken.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex01/Ch11Ex01/Cow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex01/Ch11Ex01/Cow.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex01/Ch11Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex01/Ch11Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex02/Ch11Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex02/Ch11Ex02.sln -------------------------------------------------------------------------------- /Chapter11/Ch11Ex02/Ch11Ex02/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex02/Ch11Ex02/Animal.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex02/Ch11Ex02/AnimalCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex02/Ch11Ex02/AnimalCollection.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex02/Ch11Ex02/Ch11Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex02/Ch11Ex02/Ch11Ex02.csproj -------------------------------------------------------------------------------- /Chapter11/Ch11Ex02/Ch11Ex02/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex02/Ch11Ex02/Chicken.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex02/Ch11Ex02/Cow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex02/Ch11Ex02/Cow.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex02/Ch11Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex02/Ch11Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex03/Ch11Ex03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex03/Ch11Ex03.sln -------------------------------------------------------------------------------- /Chapter11/Ch11Ex03/Ch11Ex03/Ch11Ex03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex03/Ch11Ex03/Ch11Ex03.csproj -------------------------------------------------------------------------------- /Chapter11/Ch11Ex03/Ch11Ex03/Primes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex03/Ch11Ex03/Primes.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex03/Ch11Ex03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex03/Ch11Ex03/Program.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex04/Ch11Ex04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex04/Ch11Ex04.sln -------------------------------------------------------------------------------- /Chapter11/Ch11Ex04/Ch11Ex04/Ch11Ex04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex04/Ch11Ex04/Ch11Ex04.csproj -------------------------------------------------------------------------------- /Chapter11/Ch11Ex04/Ch11Ex04/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex04/Ch11Ex04/Program.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex05/Ch11Ex05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex05/Ch11Ex05.sln -------------------------------------------------------------------------------- /Chapter11/Ch11Ex05/Ch11Ex05/Ch11Ex05.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex05/Ch11Ex05/Ch11Ex05.csproj -------------------------------------------------------------------------------- /Chapter11/Ch11Ex05/Ch11Ex05/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex05/Ch11Ex05/Person.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex05/Ch11Ex05/PersonNameComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex05/Ch11Ex05/PersonNameComparer.cs -------------------------------------------------------------------------------- /Chapter11/Ch11Ex05/Ch11Ex05/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/Ch11Ex05/Ch11Ex05/Program.cs -------------------------------------------------------------------------------- /Chapter11/SimpleIterators/SimpleIterators.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/SimpleIterators/SimpleIterators.sln -------------------------------------------------------------------------------- /Chapter11/SimpleIterators/SimpleIterators/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/SimpleIterators/SimpleIterators/Program.cs -------------------------------------------------------------------------------- /Chapter11/SimpleIterators/SimpleIterators/SimpleIterators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter11/SimpleIterators/SimpleIterators/SimpleIterators.csproj -------------------------------------------------------------------------------- /Chapter12/Ch12CardClient/Ch12CardClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12CardClient/Ch12CardClient.sln -------------------------------------------------------------------------------- /Chapter12/Ch12CardClient/Ch12CardClient/Ch12CardClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12CardClient/Ch12CardClient/Ch12CardClient.csproj -------------------------------------------------------------------------------- /Chapter12/Ch12CardClient/Ch12CardClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12CardClient/Ch12CardClient/Program.cs -------------------------------------------------------------------------------- /Chapter12/Ch12CardLib/Ch12CardLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12CardLib/Ch12CardLib.sln -------------------------------------------------------------------------------- /Chapter12/Ch12CardLib/Ch12CardLib/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12CardLib/Ch12CardLib/Card.cs -------------------------------------------------------------------------------- /Chapter12/Ch12CardLib/Ch12CardLib/CardCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12CardLib/Ch12CardLib/CardCollection.cs -------------------------------------------------------------------------------- /Chapter12/Ch12CardLib/Ch12CardLib/Ch12CardLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12CardLib/Ch12CardLib/Ch12CardLib.csproj -------------------------------------------------------------------------------- /Chapter12/Ch12CardLib/Ch12CardLib/Deck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12CardLib/Ch12CardLib/Deck.cs -------------------------------------------------------------------------------- /Chapter12/Ch12CardLib/Ch12CardLib/Rank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12CardLib/Ch12CardLib/Rank.cs -------------------------------------------------------------------------------- /Chapter12/Ch12CardLib/Ch12CardLib/Suit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12CardLib/Ch12CardLib/Suit.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex01/Ch12Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex01/Ch12Ex01.sln -------------------------------------------------------------------------------- /Chapter12/Ch12Ex01/Ch12Ex01/Ch12Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex01/Ch12Ex01/Ch12Ex01.csproj -------------------------------------------------------------------------------- /Chapter12/Ch12Ex01/Ch12Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex01/Ch12Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex01/Ch12Ex01/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex01/Ch12Ex01/Vector.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex02/Ch12Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex02/Ch12Ex02.sln -------------------------------------------------------------------------------- /Chapter12/Ch12Ex02/Ch12Ex02/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex02/Ch12Ex02/Animal.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex02/Ch12Ex02/Ch12Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex02/Ch12Ex02/Ch12Ex02.csproj -------------------------------------------------------------------------------- /Chapter12/Ch12Ex02/Ch12Ex02/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex02/Ch12Ex02/Chicken.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex02/Ch12Ex02/Cow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex02/Ch12Ex02/Cow.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex02/Ch12Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex02/Ch12Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex03/Ch12Ex03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex03/Ch12Ex03.sln -------------------------------------------------------------------------------- /Chapter12/Ch12Ex03/Ch12Ex03/Ch12Ex03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex03/Ch12Ex03/Ch12Ex03.csproj -------------------------------------------------------------------------------- /Chapter12/Ch12Ex03/Ch12Ex03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex03/Ch12Ex03/Program.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex03/Ch12Ex03/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex03/Ch12Ex03/Vector.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex03/Ch12Ex03/VectorDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex03/Ch12Ex03/VectorDelegates.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex03/Ch12Ex03/VectorList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex03/Ch12Ex03/VectorList.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex04/Ch12Ex04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex04/Ch12Ex04.sln -------------------------------------------------------------------------------- /Chapter12/Ch12Ex04/Ch12Ex04/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex04/Ch12Ex04/Animal.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex04/Ch12Ex04/Ch12Ex04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex04/Ch12Ex04/Ch12Ex04.csproj -------------------------------------------------------------------------------- /Chapter12/Ch12Ex04/Ch12Ex04/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex04/Ch12Ex04/Chicken.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex04/Ch12Ex04/Cow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex04/Ch12Ex04/Cow.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex04/Ch12Ex04/Farm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex04/Ch12Ex04/Farm.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex04/Ch12Ex04/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex04/Ch12Ex04/Program.cs -------------------------------------------------------------------------------- /Chapter12/Ch12Ex04/Ch12Ex04/SuperCow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/Ch12Ex04/Ch12Ex04/SuperCow.cs -------------------------------------------------------------------------------- /Chapter12/VarianceDemo/VarianceDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/VarianceDemo/VarianceDemo.sln -------------------------------------------------------------------------------- /Chapter12/VarianceDemo/VarianceDemo/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/VarianceDemo/VarianceDemo/Animal.cs -------------------------------------------------------------------------------- /Chapter12/VarianceDemo/VarianceDemo/AnimalNameLengthComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/VarianceDemo/VarianceDemo/AnimalNameLengthComparer.cs -------------------------------------------------------------------------------- /Chapter12/VarianceDemo/VarianceDemo/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/VarianceDemo/VarianceDemo/Chicken.cs -------------------------------------------------------------------------------- /Chapter12/VarianceDemo/VarianceDemo/Cow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/VarianceDemo/VarianceDemo/Cow.cs -------------------------------------------------------------------------------- /Chapter12/VarianceDemo/VarianceDemo/IGrassMuncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/VarianceDemo/VarianceDemo/IGrassMuncher.cs -------------------------------------------------------------------------------- /Chapter12/VarianceDemo/VarianceDemo/IMethaneProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/VarianceDemo/VarianceDemo/IMethaneProducer.cs -------------------------------------------------------------------------------- /Chapter12/VarianceDemo/VarianceDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/VarianceDemo/VarianceDemo/Program.cs -------------------------------------------------------------------------------- /Chapter12/VarianceDemo/VarianceDemo/SuperCow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/VarianceDemo/VarianceDemo/SuperCow.cs -------------------------------------------------------------------------------- /Chapter12/VarianceDemo/VarianceDemo/VarianceDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter12/VarianceDemo/VarianceDemo/VarianceDemo.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13CardClient/Ch13CardClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardClient/Ch13CardClient.sln -------------------------------------------------------------------------------- /Chapter13/Ch13CardClient/Ch13CardClient/Ch13CardClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardClient/Ch13CardClient/Ch13CardClient.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13CardClient/Ch13CardClient/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardClient/Ch13CardClient/Game.cs -------------------------------------------------------------------------------- /Chapter13/Ch13CardClient/Ch13CardClient/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardClient/Ch13CardClient/Player.cs -------------------------------------------------------------------------------- /Chapter13/Ch13CardClient/Ch13CardClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardClient/Ch13CardClient/Program.cs -------------------------------------------------------------------------------- /Chapter13/Ch13CardLib/Ch13CardLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardLib/Ch13CardLib.sln -------------------------------------------------------------------------------- /Chapter13/Ch13CardLib/Ch13CardLib/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardLib/Ch13CardLib/Card.cs -------------------------------------------------------------------------------- /Chapter13/Ch13CardLib/Ch13CardLib/CardOutOfRangeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardLib/Ch13CardLib/CardOutOfRangeException.cs -------------------------------------------------------------------------------- /Chapter13/Ch13CardLib/Ch13CardLib/Cards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardLib/Ch13CardLib/Cards.cs -------------------------------------------------------------------------------- /Chapter13/Ch13CardLib/Ch13CardLib/Ch13CardLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardLib/Ch13CardLib/Ch13CardLib.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13CardLib/Ch13CardLib/Deck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardLib/Ch13CardLib/Deck.cs -------------------------------------------------------------------------------- /Chapter13/Ch13CardLib/Ch13CardLib/Rank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardLib/Ch13CardLib/Rank.cs -------------------------------------------------------------------------------- /Chapter13/Ch13CardLib/Ch13CardLib/Suit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13CardLib/Ch13CardLib/Suit.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex01/Ch13Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex01/Ch13Ex01.sln -------------------------------------------------------------------------------- /Chapter13/Ch13Ex01/Ch13Ex01/Ch13Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex01/Ch13Ex01/Ch13Ex01.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13Ex01/Ch13Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex01/Ch13Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex02/Ch13Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex02/Ch13Ex02.sln -------------------------------------------------------------------------------- /Chapter13/Ch13Ex02/Ch13Ex02/Ch13Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex02/Ch13Ex02/Ch13Ex02.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13Ex02/Ch13Ex02/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex02/Ch13Ex02/Connection.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex02/Ch13Ex02/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex02/Ch13Ex02/Display.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex02/Ch13Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex02/Ch13Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex03/Ch13Ex03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex03/Ch13Ex03.sln -------------------------------------------------------------------------------- /Chapter13/Ch13Ex03/Ch13Ex03/Ch13Ex03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex03/Ch13Ex03/Ch13Ex03.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13Ex03/Ch13Ex03/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex03/Ch13Ex03/Connection.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex03/Ch13Ex03/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex03/Ch13Ex03/Display.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex03/Ch13Ex03/MessageArrivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex03/Ch13Ex03/MessageArrivedEventArgs.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex03/Ch13Ex03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex03/Ch13Ex03/Program.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex04/Ch13Ex04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex04/Ch13Ex04.sln -------------------------------------------------------------------------------- /Chapter13/Ch13Ex04/Ch13Ex04/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex04/Ch13Ex04/Animal.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex04/Ch13Ex04/Ch13Ex04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex04/Ch13Ex04/Ch13Ex04.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13Ex04/Ch13Ex04/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex04/Ch13Ex04/Chicken.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex04/Ch13Ex04/Cow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex04/Ch13Ex04/Cow.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex04/Ch13Ex04/Farm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex04/Ch13Ex04/Farm.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex04/Ch13Ex04/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex04/Ch13Ex04/Program.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex04/Ch13Ex04/SuperCow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex04/Ch13Ex04/SuperCow.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex05/Ch13Ex05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex05/Ch13Ex05.sln -------------------------------------------------------------------------------- /Chapter13/Ch13Ex05/Ch13Ex05/Ch13Ex05.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex05/Ch13Ex05/Ch13Ex05.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13Ex05/Ch13Ex05/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex05/Ch13Ex05/Program.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex06/Ch13Ex06.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex06/Ch13Ex06.sln -------------------------------------------------------------------------------- /Chapter13/Ch13Ex06/Ch13Ex06/Ch13Ex06.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex06/Ch13Ex06/Ch13Ex06.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13Ex06/Ch13Ex06/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex06/Ch13Ex06/Program.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex07/Ch13Ex07.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex07/Ch13Ex07.sln -------------------------------------------------------------------------------- /Chapter13/Ch13Ex07/Ch13Ex07/Ch13Ex07.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex07/Ch13Ex07/Ch13Ex07.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13Ex07/Ch13Ex07/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex07/Ch13Ex07/Program.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex07/Ch13Ex07/WordProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex07/Ch13Ex07/WordProcessor.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex08/Ch13Ex08.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex08/Ch13Ex08.sln -------------------------------------------------------------------------------- /Chapter13/Ch13Ex08/Ch13Ex08/Ch13Ex08.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex08/Ch13Ex08/Ch13Ex08.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13Ex08/Ch13Ex08/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex08/Ch13Ex08/Program.cs -------------------------------------------------------------------------------- /Chapter13/Ch13Ex09/Ch13Ex09.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex09/Ch13Ex09.sln -------------------------------------------------------------------------------- /Chapter13/Ch13Ex09/Ch13Ex09/Ch13Ex09.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex09/Ch13Ex09/Ch13Ex09.csproj -------------------------------------------------------------------------------- /Chapter13/Ch13Ex09/Ch13Ex09/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/Ch13Ex09/Ch13Ex09/Program.cs -------------------------------------------------------------------------------- /Chapter13/CustomAttributes/CustomAttributes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/CustomAttributes/CustomAttributes.sln -------------------------------------------------------------------------------- /Chapter13/CustomAttributes/CustomAttributes/CustomAttributes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/CustomAttributes/CustomAttributes/CustomAttributes.csproj -------------------------------------------------------------------------------- /Chapter13/CustomAttributes/CustomAttributes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter13/CustomAttributes/CustomAttributes/Program.cs -------------------------------------------------------------------------------- /Chapter14/Compressor/Compressor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/Compressor/Compressor.csproj -------------------------------------------------------------------------------- /Chapter14/Compressor/Compressor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/Compressor/Compressor.sln -------------------------------------------------------------------------------- /Chapter14/Compressor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/Compressor/Program.cs -------------------------------------------------------------------------------- /Chapter14/FileWatch/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/FileWatch/App.xaml -------------------------------------------------------------------------------- /Chapter14/FileWatch/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/FileWatch/App.xaml.cs -------------------------------------------------------------------------------- /Chapter14/FileWatch/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/FileWatch/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter14/FileWatch/FileWatch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/FileWatch/FileWatch.csproj -------------------------------------------------------------------------------- /Chapter14/FileWatch/FileWatch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/FileWatch/FileWatch.sln -------------------------------------------------------------------------------- /Chapter14/FileWatch/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/FileWatch/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter14/FileWatch/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/FileWatch/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter14/ReadFile/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/ReadFile/Program.cs -------------------------------------------------------------------------------- /Chapter14/ReadFile/ReadFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/ReadFile/ReadFile.csproj -------------------------------------------------------------------------------- /Chapter14/ReadFile/ReadFile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/ReadFile/ReadFile.sln -------------------------------------------------------------------------------- /Chapter14/StreamRead/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/StreamRead/Program.cs -------------------------------------------------------------------------------- /Chapter14/StreamRead/StreamRead.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/StreamRead/StreamRead.csproj -------------------------------------------------------------------------------- /Chapter14/StreamRead/StreamRead.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/StreamRead/StreamRead.sln -------------------------------------------------------------------------------- /Chapter14/StreamWrite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/StreamWrite/Program.cs -------------------------------------------------------------------------------- /Chapter14/StreamWrite/StreamWrite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/StreamWrite/StreamWrite.csproj -------------------------------------------------------------------------------- /Chapter14/StreamWrite/StreamWrite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/StreamWrite/StreamWrite.sln -------------------------------------------------------------------------------- /Chapter14/WriteFile/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/WriteFile/Program.cs -------------------------------------------------------------------------------- /Chapter14/WriteFile/WriteFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/WriteFile/WriteFile.csproj -------------------------------------------------------------------------------- /Chapter14/WriteFile/WriteFile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter14/WriteFile/WriteFile.sln -------------------------------------------------------------------------------- /Chapter15/LoopThroughXmlDocument/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/LoopThroughXmlDocument/App.xaml -------------------------------------------------------------------------------- /Chapter15/LoopThroughXmlDocument/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/LoopThroughXmlDocument/App.xaml.cs -------------------------------------------------------------------------------- /Chapter15/LoopThroughXmlDocument/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/LoopThroughXmlDocument/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter15/LoopThroughXmlDocument/LoopThroughXmlDocument.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/LoopThroughXmlDocument/LoopThroughXmlDocument.csproj -------------------------------------------------------------------------------- /Chapter15/LoopThroughXmlDocument/LoopThroughXmlDocument.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/LoopThroughXmlDocument/LoopThroughXmlDocument.sln -------------------------------------------------------------------------------- /Chapter15/LoopThroughXmlDocument/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/LoopThroughXmlDocument/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter15/LoopThroughXmlDocument/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/LoopThroughXmlDocument/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter15/SerializeJSON/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/SerializeJSON/Program.cs -------------------------------------------------------------------------------- /Chapter15/SerializeJSON/SerializeJSON.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/SerializeJSON/SerializeJSON.csproj -------------------------------------------------------------------------------- /Chapter15/SerializeJSON/SerializeJSON.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/SerializeJSON/SerializeJSON.sln -------------------------------------------------------------------------------- /Chapter15/XML and Schemas/Books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XML and Schemas/Books.json -------------------------------------------------------------------------------- /Chapter15/XML and Schemas/Books.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XML and Schemas/Books.xml -------------------------------------------------------------------------------- /Chapter15/XML and Schemas/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XML and Schemas/Elements.xml -------------------------------------------------------------------------------- /Chapter15/XML and Schemas/GhostStories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XML and Schemas/GhostStories.xml -------------------------------------------------------------------------------- /Chapter15/XML and Schemas/GhostStories.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XML and Schemas/GhostStories.xsd -------------------------------------------------------------------------------- /Chapter15/XPathQuery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XPathQuery/App.xaml -------------------------------------------------------------------------------- /Chapter15/XPathQuery/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XPathQuery/App.xaml.cs -------------------------------------------------------------------------------- /Chapter15/XPathQuery/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XPathQuery/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter15/XPathQuery/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XPathQuery/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter15/XPathQuery/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XPathQuery/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter15/XPathQuery/XPathQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XPathQuery/XPathQuery.csproj -------------------------------------------------------------------------------- /Chapter15/XPathQuery/XPathQuery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter15/XPathQuery/XPathQuery.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_10_GroupQuery/BeginningCSharpAndDotNET_16_10_GroupQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_10_GroupQuery/BeginningCSharpAndDotNET_16_10_GroupQuery.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_10_GroupQuery/BeginningCSharpAndDotNET_16_10_GroupQuery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_10_GroupQuery/BeginningCSharpAndDotNET_16_10_GroupQuery.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_10_GroupQuery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_10_GroupQuery/Program.cs -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_11_JoinQuery/BeginningCSharpAndDotNET_16_11_JoinQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_11_JoinQuery/BeginningCSharpAndDotNET_16_11_JoinQuery.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_11_JoinQuery/BeginningCSharpAndDotNET_16_11_JoinQuery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_11_JoinQuery/BeginningCSharpAndDotNET_16_11_JoinQuery.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_11_JoinQuery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_11_JoinQuery/Program.cs -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors/BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors/BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors/BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors/BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_1_LinqToXmlConstructors/Program.cs -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_2_XMLFragments/.vs/BeginningCSharpAndDotNET_16_2_XMLFragments/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_2_XMLFragments/.vs/BeginningCSharpAndDotNET_16_2_XMLFragments/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_2_XMLFragments/BeginningCSharpAndDotNET_16_2_XMLFragments.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_2_XMLFragments/BeginningCSharpAndDotNET_16_2_XMLFragments.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_2_XMLFragments/BeginningCSharpAndDotNET_16_2_XMLFragments.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_2_XMLFragments/BeginningCSharpAndDotNET_16_2_XMLFragments.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_2_XMLFragments/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_2_XMLFragments/Program.cs -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_2_XMLFragments/fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_2_XMLFragments/fragment.xml -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_3_QuerySyntax/BeginningCSharpAndDotNET_16_3_QuerySyntax.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_3_QuerySyntax/BeginningCSharpAndDotNET_16_3_QuerySyntax.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_3_QuerySyntax/BeginningCSharpAndDotNET_16_3_QuerySyntax.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_3_QuerySyntax/BeginningCSharpAndDotNET_16_3_QuerySyntax.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_3_QuerySyntax/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_3_QuerySyntax/Program.cs -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_4_MethodSyntax/BeginningCSharpAndDotNET_16_4_MethodSyntax.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_4_MethodSyntax/BeginningCSharpAndDotNET_16_4_MethodSyntax.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_4_MethodSyntax/BeginningCSharpAndDotNET_16_4_MethodSyntax.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_4_MethodSyntax/BeginningCSharpAndDotNET_16_4_MethodSyntax.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_4_MethodSyntax/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_4_MethodSyntax/Program.cs -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_5_OrderQueryResults/BeginningCSharpAndDotNET_16_5_OrderQueryResults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_5_OrderQueryResults/BeginningCSharpAndDotNET_16_5_OrderQueryResults.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_5_OrderQueryResults/BeginningCSharpAndDotNET_16_5_OrderQueryResults.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_5_OrderQueryResults/BeginningCSharpAndDotNET_16_5_OrderQueryResults.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_5_OrderQueryResults/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_5_OrderQueryResults/Program.cs -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_6_LargeNumberQuery/BeginningCSharpAndDotNET_16_6_LargeNumberQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_6_LargeNumberQuery/BeginningCSharpAndDotNET_16_6_LargeNumberQuery.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_6_LargeNumberQuery/BeginningCSharpAndDotNET_16_6_LargeNumberQuery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_6_LargeNumberQuery/BeginningCSharpAndDotNET_16_6_LargeNumberQuery.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_6_LargeNumberQuery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_6_LargeNumberQuery/Program.cs -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_7_NumericAggregates/BeginningCSharpAndDotNET_16_7_NumericAggregates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_7_NumericAggregates/BeginningCSharpAndDotNET_16_7_NumericAggregates.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_7_NumericAggregates/BeginningCSharpAndDotNET_16_7_NumericAggregates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_7_NumericAggregates/BeginningCSharpAndDotNET_16_7_NumericAggregates.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_7_NumericAggregates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_7_NumericAggregates/Program.cs -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_8_SelectDistinctQuery/BeginningCSharpAndDotNET_16_8_SelectDistinctQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_8_SelectDistinctQuery/BeginningCSharpAndDotNET_16_8_SelectDistinctQuery.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_8_SelectDistinctQuery/BeginningCSharpAndDotNET_16_8_SelectDistinctQuery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_8_SelectDistinctQuery/BeginningCSharpAndDotNET_16_8_SelectDistinctQuery.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_8_SelectDistinctQuery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_8_SelectDistinctQuery/Program.cs -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_9_MultiLevelOrdering/BeginningCSharpAndDotNET_16_9_MultiLevelOrdering.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_9_MultiLevelOrdering/BeginningCSharpAndDotNET_16_9_MultiLevelOrdering.csproj -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_9_MultiLevelOrdering/BeginningCSharpAndDotNET_16_9_MultiLevelOrdering.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_9_MultiLevelOrdering/BeginningCSharpAndDotNET_16_9_MultiLevelOrdering.sln -------------------------------------------------------------------------------- /Chapter16/BeginningCSharpAndDotNET_16_9_MultiLevelOrdering/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter16/BeginningCSharpAndDotNET_16_9_MultiLevelOrdering/Program.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase.csproj -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase.sln -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Migrations/20210318013734_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Migrations/20210318013734_Initial.Designer.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Migrations/20210318013734_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Migrations/20210318013734_Initial.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Migrations/20210321220025_StoresAndStocks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Migrations/20210321220025_StoresAndStocks.Designer.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Migrations/20210321220025_StoresAndStocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Migrations/20210321220025_StoresAndStocks.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Migrations/BookContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Migrations/BookContextModelSnapshot.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Program - Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Program - Copy.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_1_CodeFirstDatabase/Program.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/BeginningCSharpAndDotNet_17_2_XMLfromDatabase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/BeginningCSharpAndDotNet_17_2_XMLfromDatabase.csproj -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/BeginningCSharpAndDotNet_17_2_XMLfromDatabase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/BeginningCSharpAndDotNet_17_2_XMLfromDatabase.sln -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/Book.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/BooksContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/BooksContext.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/Program.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/Stock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/Stock.cs -------------------------------------------------------------------------------- /Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter17/BeginningCSharpAndDotNet_17_2_XMLfromDatabase/Store.cs -------------------------------------------------------------------------------- /Chapter17/Readme.md: -------------------------------------------------------------------------------- 1 | Source code for Chapter 17 2 | -------------------------------------------------------------------------------- /Chapter18/Ch18CardClientCore/Ch18CardClientCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter18/Ch18CardClientCore/Ch18CardClientCore.sln -------------------------------------------------------------------------------- /Chapter18/Ch18CardClientCore/Ch18CardClientCore/Ch18CardClientCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter18/Ch18CardClientCore/Ch18CardClientCore/Ch18CardClientCore.csproj -------------------------------------------------------------------------------- /Chapter18/Ch18CardClientCore/Ch18CardClientCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter18/Ch18CardClientCore/Ch18CardClientCore/Program.cs -------------------------------------------------------------------------------- /Chapter18/Ch18CardLibStandard/Ch18CardLibStandard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter18/Ch18CardLibStandard/Ch18CardLibStandard.sln -------------------------------------------------------------------------------- /Chapter18/Ch18CardLibStandard/Ch18CardLibStandard/CardGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter18/Ch18CardLibStandard/Ch18CardLibStandard/CardGame.cs -------------------------------------------------------------------------------- /Chapter18/Ch18CardLibStandard/Ch18CardLibStandard/Ch18CardLibStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter18/Ch18CardLibStandard/Ch18CardLibStandard/Ch18CardLibStandard.csproj -------------------------------------------------------------------------------- /Chapter18/Ch18CardLibStandard/Ch18CardLibStandard/Ch18CardLibStandard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter18/Ch18CardLibStandard/Ch18CardLibStandard/Ch18CardLibStandard.xml -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01.sln -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-1.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-10.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-11.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-12.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-13.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-2.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-3.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-4.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-5.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-6.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-7.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-8.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/0-9.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-1.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-10.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-11.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-12.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-13.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-2.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-3.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-4.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-5.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-6.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-7.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-8.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/1-9.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-1.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-10.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-11.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-12.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-13.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-2.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-3.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-4.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-5.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-6.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-7.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-8.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/2-9.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-1.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-10.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-11.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-12.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-13.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-2.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-3.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-4.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-5.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-6.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-7.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-8.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Cards/3-9.PNG -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Ch19Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Ch19Ex01.csproj -------------------------------------------------------------------------------- /Chapter19/Ch19Ex01/Ch19Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex01/Ch19Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter19/Ch19Ex02/Ch19Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex02/Ch19Ex02.sln -------------------------------------------------------------------------------- /Chapter19/Ch19Ex02/Ch19Ex02/Ch19Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex02/Ch19Ex02/Ch19Ex02.csproj -------------------------------------------------------------------------------- /Chapter19/Ch19Ex02/Ch19Ex02/Models/CardGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex02/Ch19Ex02/Models/CardGame.cs -------------------------------------------------------------------------------- /Chapter19/Ch19Ex02/Ch19Ex02/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex02/Ch19Ex02/Pages/Index.cshtml -------------------------------------------------------------------------------- /Chapter19/Ch19Ex02/Ch19Ex02/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex02/Ch19Ex02/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Chapter19/Ch19Ex02/Ch19Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex02/Ch19Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter19/Ch19Ex02/Ch19Ex02/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex02/Ch19Ex02/Startup.cs -------------------------------------------------------------------------------- /Chapter19/Ch19Ex02/Ch19Ex02/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex02/Ch19Ex02/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter19/Ch19Ex02/Ch19Ex02/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter19/Ch19Ex02/Ch19Ex02/appsettings.json -------------------------------------------------------------------------------- /Chapter20/Ch20Ex01/Ch20Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex01/Ch20Ex01.sln -------------------------------------------------------------------------------- /Chapter20/Ch20Ex01/Ch20Ex01/Ch20Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex01/Ch20Ex01/Ch20Ex01.csproj -------------------------------------------------------------------------------- /Chapter20/Ch20Ex01/Ch20Ex01/Ch20Ex01.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex01/Ch20Ex01/Ch20Ex01.csproj.user -------------------------------------------------------------------------------- /Chapter20/Ch20Ex01/Ch20Ex01/Controllers/HandOfCardsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex01/Ch20Ex01/Controllers/HandOfCardsController.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex01/Ch20Ex01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex01/Ch20Ex01/Program.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex01/Ch20Ex01/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex01/Ch20Ex01/Startup.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex01/Ch20Ex01/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex01/Ch20Ex01/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter20/Ch20Ex01/Ch20Ex01/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex01/Ch20Ex01/appsettings.json -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02.sln -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/App.razor -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/Ch20Ex02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/Ch20Ex02.csproj -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/Pages/Counter.razor -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/Pages/FetchData.razor -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/Pages/Index.razor -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/Program.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /Chapter20/Ch20Ex02/Ch20Ex02/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex02/Ch20Ex02/_Imports.razor -------------------------------------------------------------------------------- /Chapter20/Ch20Ex03/Ch20Ex03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex03/Ch20Ex03.sln -------------------------------------------------------------------------------- /Chapter20/Ch20Ex03/Ch20Ex03/Ch20Ex03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex03/Ch20Ex03/Ch20Ex03.csproj -------------------------------------------------------------------------------- /Chapter20/Ch20Ex03/Ch20Ex03/Ch20Ex03.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex03/Ch20Ex03/Ch20Ex03.csproj.user -------------------------------------------------------------------------------- /Chapter20/Ch20Ex03/Ch20Ex03/IService1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex03/Ch20Ex03/IService1.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex03/Ch20Ex03/Service1.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex03/Ch20Ex03/Service1.svc -------------------------------------------------------------------------------- /Chapter20/Ch20Ex03/Ch20Ex03/Service1.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex03/Ch20Ex03/Service1.svc.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex03/Ch20Ex03/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex03/Ch20Ex03/Web.config -------------------------------------------------------------------------------- /Chapter20/Ch20Ex03Client/Ch20Ex03Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex03Client/Ch20Ex03Client.csproj -------------------------------------------------------------------------------- /Chapter20/Ch20Ex03Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex03Client/Program.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04/Ch20Ex04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04/Ch20Ex04.sln -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04/Ch20Ex04/Ch20Ex04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04/Ch20Ex04/Ch20Ex04.csproj -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04/Ch20Ex04/Ch20Ex04.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04/Ch20Ex04/Ch20Ex04.csproj.user -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04/Ch20Ex04/GameService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04/Ch20Ex04/GameService.svc -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04/Ch20Ex04/GameService.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04/Ch20Ex04/GameService.svc.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04/Ch20Ex04/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04/Ch20Ex04/Web.config -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04Client/App.config -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04Client/Ch20Ex04Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04Client/Ch20Ex04Client.csproj -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04Client/Program.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04Contracts/Ch20Ex04Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04Contracts/Ch20Ex04Contracts.csproj -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04Contracts/IGameService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04Contracts/IGameService.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex04Contracts/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex04Contracts/Player.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05/Ch20Ex05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05/Ch20Ex05.sln -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05/Ch20Ex05/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05/Ch20Ex05/App.config -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05/Ch20Ex05/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05/Ch20Ex05/App.xaml -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05/Ch20Ex05/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05/Ch20Ex05/App.xaml.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05/Ch20Ex05/AppControlService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05/Ch20Ex05/AppControlService.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05/Ch20Ex05/Ch20Ex05.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05/Ch20Ex05/Ch20Ex05.csproj -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05/Ch20Ex05/IAppControlService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05/Ch20Ex05/IAppControlService.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05/Ch20Ex05/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05/Ch20Ex05/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05/Ch20Ex05/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05/Ch20Ex05/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05Client/App.config -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05Client/Ch20Ex05Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05Client/Ch20Ex05Client.csproj -------------------------------------------------------------------------------- /Chapter20/Ch20Ex05Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter20/Ch20Ex05Client/Program.cs -------------------------------------------------------------------------------- /Chapter20/Readme.md: -------------------------------------------------------------------------------- 1 | Source code for Chapter 20 2 | -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/AboutWindow.xaml -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/App.xaml -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/App.xaml.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/BensCards.WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/BensCards.WPF.csproj -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/BensCards.WPF.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/BensCards.WPF.csproj.user -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/BensCards.WPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/BensCards.WPF.sln -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/CardControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/CardControl.xaml -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/CardControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/CardControl.xaml.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/CardsInHandControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/CardsInHandControl.xaml -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/CardsInHandControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/CardsInHandControl.xaml.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/ControlResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/ControlResources.xaml -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/GameClientWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/GameClientWindow.xaml -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/GameClientWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/GameClientWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/GameDecksControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/GameDecksControl.xaml -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/GameDecksControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/GameDecksControl.xaml.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/GameOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/GameOptions.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/GameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/GameViewModel.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/Images/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/Images/Banner.png -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/Images/Clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/Images/Clubs.png -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/Images/Diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/Images/Diamonds.png -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/Images/Hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/Images/Hearts.png -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/Images/Spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/Images/Spades.png -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/Images/base_floppydisk_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/Images/base_floppydisk_32.png -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/InversedBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/InversedBoolConverter.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/NumberOfPlayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/NumberOfPlayers.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/OptionsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/OptionsWindow.xaml -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/OptionsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/OptionsWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/RankNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/RankNameConverter.cs -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/StartGameWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/StartGameWindow.xaml -------------------------------------------------------------------------------- /Chapter21/BensCards.WPF/StartGameWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/BensCards.WPF/StartGameWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/Card.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/CardEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/CardEventArgs.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/CardOutOfRangeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/CardOutOfRangeException.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/Cards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/Cards.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/Ch13CardLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/Ch13CardLib.csproj -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/ComputerPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/ComputerPlayer.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/ComputerSkillLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/ComputerSkillLevel.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/Deck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/Deck.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/Player.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/PlayerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/PlayerEventArgs.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/PlayerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/PlayerState.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/Rank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/Rank.cs -------------------------------------------------------------------------------- /Chapter21/Ch13CardLib/Suit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch13CardLib/Suit.cs -------------------------------------------------------------------------------- /Chapter21/Ch21Ex01/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch21Ex01/App.xaml -------------------------------------------------------------------------------- /Chapter21/Ch21Ex01/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch21Ex01/App.xaml.cs -------------------------------------------------------------------------------- /Chapter21/Ch21Ex01/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch21Ex01/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter21/Ch21Ex01/Ch21Ex01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch21Ex01/Ch21Ex01.csproj -------------------------------------------------------------------------------- /Chapter21/Ch21Ex01/Ch21Ex01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch21Ex01/Ch21Ex01.sln -------------------------------------------------------------------------------- /Chapter21/Ch21Ex01/ImageButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch21Ex01/ImageButton.xaml -------------------------------------------------------------------------------- /Chapter21/Ch21Ex01/ImageButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch21Ex01/ImageButton.xaml.cs -------------------------------------------------------------------------------- /Chapter21/Ch21Ex01/Images/Delete_black_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch21Ex01/Images/Delete_black_32x32.png -------------------------------------------------------------------------------- /Chapter21/Ch21Ex01/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch21Ex01/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter21/Ch21Ex01/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/Ch21Ex01/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/App.xaml -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/App.xaml.cs -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/Canvas.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/Canvas.xaml -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/Canvas.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/Canvas.xaml.cs -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/DockPanels.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/DockPanels.xaml -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/DockPanels.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/DockPanels.xaml.cs -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/LayoutExamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/LayoutExamples.csproj -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/LayoutExamples.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/LayoutExamples.csproj.user -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/LayoutExamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/LayoutExamples.sln -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/StackPanels.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/StackPanels.xaml -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/StackPanels.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/StackPanels.xaml.cs -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/WrapPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/WrapPanel.xaml -------------------------------------------------------------------------------- /Chapter21/LayoutExamples/WrapPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/Chapter21/LayoutExamples/WrapPanel.xaml.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benperk/BeginningCSharpAndDotNET/HEAD/README.md --------------------------------------------------------------------------------