Open CPMOliveira opened 2 months ago
Hi CPMOliveira,
1) We have a list on the frontpage: https://github.com/MadsKirkFoged/EngineeringUnits?tab=readme-ov-file#what-units-are-included
This list is generated using this code: https://github.com/MadsKirkFoged/EngineeringUnits/blob/master/CodeGen/Code/UnitListGenerator.cs
2) The closest we have right now is this:
//Got from database (Stored in two different cells)
double? value = 10;
string unit = "Meter";
//Put it back together
Length temp = value.AddUnit<LengthUnit>(unit);
However we dont (yet) have a way to turn fx "10 m/s" in a Speed-object.
If you could come with some examples/User stories of the behavior you want, it might not be that difficult to create
Hello,
I’ve recently started using the EngineeringUnits library and have been impressed with its capabilities. However, I’m facing a couple of challenges and would appreciate some guidance:
Any advice or examples would be highly appreciated.