Steve Dunn
Steve Dunn
### Describe the feature Copy over the serialization benchmarks
Should run at 60fps, but on devices with a high refresh rate, such as the Pixel 6, it runs at whatever refresh rate that device has.
The maze isn't drawn. When the game runs, the player's maze, which is a canvas, is manipulated (e.g. each pill are removed) and then it is drawn onto the main...
Fixes #229
### Describe the feature Each generator creates a pipeline. Pipelines are run on every keypress. This can slow down performance of the host IDE (e.g. Visual Studio). Instead, use specific...
### Describe the feature Change the code to use .NET and support C# 11 in the generated output and input, e.g. `ValueObject`
### Describe the feature Including: * `IParseable` / `ISpanParseable` (for `TryParse` support added in #205 * Generic attributes * File-scoped classes
### Describe the feature Clone the operators on the underlying type. For instance: ``` csharp ValueObject[typeof(int)]` public partial struct Age { } Age a1 = Age.From(20); Age a2 = Age.From(30);...