Benjamin Michaelis
Benjamin Michaelis
### Description: If the internet is poor or just slow (so it is loading for the first time) from a clicked hyperlink to a new tab, the url does not...
Link currently sends to [https://joshclose.github.io/CsvHelper/api/CsvHelper.Configuration.Attributes](https://joshclose.github.io/CsvHelper/api/CsvHelper.Configuration.Attributes) instead of to [https://joshclose.github.io/CsvHelper/examples/configuration/attributes/](https://joshclose.github.io/CsvHelper/examples/configuration/attributes/)
Website needs to be redeployed to update it, and probably could be on a regular deploy schedule like once a week or month to keep it updated passively, without direct...
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...
@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...
@MarkMichaelis which 14.04 do we want? we use this one in the book currently: ```csharp namespace AddisonWesley.Michaelis.EssentialCSharp.Chapter14.Listing14_04 { using System; public class Thermostat { // Define the event publisher public...
 In 6.36 we have static public string instead of public static string; Which ordering do we want to make consistent? Right now typically I see is access specifier...