UnitGenerator
UnitGenerator copied to clipboard
C# Source Generator to create value-object, inspired by units of measure.
.NET8 UnitGenerator 1.6.2 Hi, ```csharp public readonly struct MyParsable : IParsable { public static MyParsable Parse(string s) => throw new NotImplementedException(); public static bool TryParse([NotNullWhen(true)] string? s, [MaybeNullWhen(false)] out MyParsable...
I try update my app from `unitgenerator` `1.4.10` to `2.0.0` for this code ```csharp using Speckle.DoubleNumerics; using UnitGenerator; [UnitOf(typeof(Vector2))] public partial struct Speed{} ``` But `Speckle.DoubleNumerics` (https://github.com/specklesystems/Speckle.DoubleNumerics) not support Vector2...
I have a use case where I have various `string` type values and they have low cardinality in the data I'm utilizing. I have to store such data in memory...