Unitilities 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Unitilities --version 1.0.0
NuGet\Install-Package Unitilities -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Unitilities" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Unitilities --version 1.0.0
#r "nuget: Unitilities, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Unitilities as a Cake Addin
#addin nuget:?package=Unitilities&version=1.0.0

// Install Unitilities as a Cake Tool
#tool nuget:?package=Unitilities&version=1.0.0

Unitilities

More detailed documentation on GitHub.

A type safe unit library for C#

Unitilities allows you to convert between different units and do arithmetic operations on them in a type safe manner.

Supported units

Distance

  • Millimeters
  • Centimeters
  • Meters
  • Kilometers
  • Inches
  • Feet

Speed

  • Kilometers per hour
  • Miles per hour

Temperature

  • Celsius
  • Fahrenheit
  • Kelvin

Usage

The following classes are the wrappers you will use:

DistanceUnit<T>
SpeedUnit<T>
TemperatureUnit<T>

Converting between units

Celsius to Fahrenheit:

TemperatureUnit<Celsius> a = new TemperatureUnit<Celsius>(74);
TemperatureUnit<Fahrenheit> conversion = a.Fahrenheit;

KPH to MPH:

SpeedUnit<KilometersHour> a = new SpeedUnit<KilometersHour>(43);
SpeedUnit<MilesHour> conversion = a.MilesHour;

Arithmetic on units

DistanceUnit<Millimeters> a = new DistanceUnit<Millimeters>(10);
DistanceUnit<Meters> b = new DistanceUnit<Meters>(20);
var c = a + b; // error
var c = a.Meters + b; // works
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 460 7/14/2020
1.0.0 427 7/8/2020