Welcome to MeasurementsTool C# library
A C# library for interacting with measures. It is designed to be easy to use and provide a great experience for developers.
Get starded
dotnet add package MeasurementsTool
// Sample of Kilograms to Ounces conversion:
var
convertedValue
=
WeightUnitType
.
KG
.
ConvertTo
(
WeightUnitType
.
OZ
,
9000
.
50
)
;
// Sample of Feet to Millimeters conversion:
var
convertedValue
=
LengthUnitType
.
FT
.
ConvertTo
(
LengthUnitType
.
MM
,
9000
.
50
)
;