UnitsNet
UnitsNet copied to clipboard
Makes life working with units of measurement just a little bit better.
v5 Roadmap
Starting early to prepare v5. This issue will serve as a place do dump ideas on what should go into this release. ### Temperature arithmetic In #518 we discussed changing...
Addresses issues posed in #717 - CompareTo implemented in terms of the two-way comparison between 'this.As(other)' & 'other.As(this)' - Equals changed to CompareTo(other) == 0 - Comparison operators re-written in...
(Creating an issue on this, as the task is now spread over several PRs) **Problem** As already described in PRs #794 #799 and #803, parsing Feet/inches combinations (ie. "7'23") fails...
C#8 is due in the fall of 2019 and one interesting feature we can take advantage of is nullable reference types, instead of JetBrains' `[NotNull]` and `[CanBeNull]` attributes that don't...
Following the many lengthy exchanges concerning the BaseUnits (default) and the UnitSystem in #646 here is a summary of limitations that I think should be addressed _at some point_. First...
Now that code coverage is run for all builds we have a baseline. It's not awful, but it sure can be improved. [At the time of this writing](https://codecov.io/gh/angularsen/UnitsNet/tree/9c12fb1382e8b4b220fe7a9bc625883ce29fc145): - UnitsNet...
As per https://github.com/angularsen/UnitsNet/issues/328#issuecomment-346925537 Having a set of tests to validate that the correct abbreviation notations and symbols are used would be helpful, as we have seen from before that discrepancies...
We are using UnitsNet to handle force plate data and derived metrics. We utilize quantities such as Force, Torque and ForceChangeRate, but have not been able to figure out what...
Fixes #1130 https://docs.microsoft.com/en-us/dotnet/csharp/write-safe-efficient-code#declare-immutable-structs-as-readonly Force the compiler to check, that all fields are readonly as well.