EssentialCSharp
EssentialCSharp copied to clipboard
This project contains the source code for the book Essential C# by Mark Michaelis (Addison-Wesley).
Added missing unit tests for chapters 18 and 19. #12
Created the missing unit tests for these chapters. #12
We are missing quite a few tests and it would be great to get the remainder in place. Rather than one person take this issue, please create a new issue...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.2.0 to 17.3.0. Release notes Sourced from Microsoft.NET.Test.Sdk's releases. v17.3.0 See the release notes here. v17.3.0-preview-20220612-01 See the release notes here. v17.3.0-preview-20220530-08 See the release notes here....
Use: List ys = new List(capacity: 10_000); Over: List ys = new(capacity: 10_000);
- New branch needs to be made with branch rules and made default - All actions have to target a new framework if applicable - All actions target branches need...
The code for 15.5 is pretty different from what it is in the book. Mark already worked on it a bit but it needs further changes
In the book 13.24 includes arrows, I think it's an image so the code in visual studios is formatted differently and won't appear the same on the pdf.
@MarkMichaelis many of the listings in chapter 23 currently has the build action to None, so should be turned onto C# compiler and reviewed.
@MarkMichaelis currently for 17.07 we use dictionary, but there is another listing for sorted dictionary, do we want to use sorted dictionary instead of dictionary? ```csharp namespace AddisonWesley.Michaelis.EssentialCSharp.Chapter17.Listing17_07 { using...