UnitConv 0.1.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package UnitConv --version 0.1.3
NuGet\Install-Package UnitConv -Version 0.1.3
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="UnitConv" Version="0.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UnitConv --version 0.1.3
#r "nuget: UnitConv, 0.1.3"
#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 UnitConv as a Cake Addin
#addin nuget:?package=UnitConv&version=0.1.3

// Install UnitConv as a Cake Tool
#tool nuget:?package=UnitConv&version=0.1.3

UnitConv

UnitConv is a simple and easy to use unit conversion library.

license NuGet

Feeds

  • NuGet NuGet

Let's get started

From NuGet:

  • PM> Install-Package UnitConv

Create a quantity

using UnitConv;

var meter1 = new Length(1184, LengthUnit.Meter);
var meter2 = new Length("1184m");
var meter3 = new Length("1184", "m");
var meter4 = new Length(1184, "m");
var meter5 = new Length("1184", LengthUnit.Meter);

Converter

var kilo = new Length(1.184m, LengthUnit.Kilometer);
var meter1 = UnitConverter.Length.Convert(kilo, LengthUnit.Meter);
var meter2 = UnitConverter.Length.Convert(kilo, "m");
var meter3 = UnitConverter.Length.Convert("1.184km", LengthUnit.Meter);
var meter4 = UnitConverter.Length.Convert("1.184km", "m");
var meter5 = UnitConverter.Length.Convert(1.184m, "km", "m");
var meter6 = UnitConverter.Length.Convert(1.184m, LengthUnit.Kilometer, LengthUnit.Meter);

Extension

using UnitConv.Extension;

var kilo = new Length(1.184m, LengthUnit.Kilometer);
var meter = kilo.ToMeter();
var mile = kilo.ToMile();

Operator

var kilo = new Length(1.184m, LengthUnit.Kilometer);
var meter = new Length(1184, LengthUnit.Meter);
var r1 = kilo == meter;  //true
var r2 = kilo != meter;  //false
var r3 = kilo <= meter;  //true
var r4 = kilo >= meter;  //true
var r5 = kilo < meter;  //false
var r6 = kilo > meter;  //false

Get display

var kilo = new Length(1.184m, LengthUnit.Kilometer);
var en = kilo.ToString();	//100.142km
var ch = kilo.ToString(Languages.Chinese);	//"100.142千米"

Default string settings

UnitConvSettings.DefaultLanguage = Languages.English;
UnitConvSettings.DefaultDigits = 3;

Supported quantity types

Area

  • Acre
  • Are
  • Hectare
  • SquareCentimeter
  • SquareDecimeter
  • SquareFoot
  • SquareInch
  • SquareKilometer
  • SquareMeter
  • SquareMile
  • SquareMillimeter
  • SquareYard

Data

  • Bit
  • Byte
  • Gigabyte
  • Kilobyte
  • Megabyte
  • Petabyte
  • Terabyte

Density

  • GramPerCubicCentimeter
  • GramPerCubicDecimeter
  • GramPerCubicMeter
  • KilogramPerCubicCentimeter
  • KilogramPerCubicDecimeter
  • KilogramPerCubicMeter

Length

  • AstronomicalUnit
  • Centimeter
  • Decimeter
  • Fathom
  • Foot
  • Furlong
  • Inch
  • Kilometer
  • LightYear
  • Meter
  • Micrometer
  • Mile
  • Millimeter
  • Nanometer
  • NauticalMile
  • Picometer
  • Yard

Power

  • BritishHorsepower
  • BritishThermalUnitPerSecond
  • FootPoundPerSecond
  • JoulePerSecond
  • KcalPerSecond
  • KilogramMeterPerSecond
  • Kilowatt
  • MetricHorsepower
  • NewtonMeterPerSecond
  • Watt

Pressure

  • Atmosphere
  • Bar
  • Hectopascal
  • InchOfMercury
  • Kilopascal
  • Megapascal
  • Millibar
  • MillimeterOfMercury
  • NewtonPerSquareMeter
  • Pascal
  • PoundPerSquareFoot
  • PoundPerSquareInch

Speed

  • InchPerSecond
  • KilometerPerHour
  • KilometerPerSecond
  • Mach
  • MeterPerSecond
  • MilePerHour

Strength

  • Dyne
  • GramForce
  • KilogramForce
  • KiloNewton
  • KilopoundForce
  • Newton
  • PoundForce
  • TonneForce

Volume

  • Centilitre
  • CubicCentimeter
  • CubicDecimeter
  • CubicFoot
  • CubicInch
  • CubicMeter
  • CubicMillimeter
  • CubicYard
  • Deciliter
  • HektoLitre
  • Litre
  • Microliter
  • Milliliter
  • UKGallon
  • USGallon

Weight

  • Gram
  • Kilogram
  • Microgram
  • Milligram
  • Ounce
  • Pound
  • Quintal
  • Ton

Work

  • BritishHorsepowerHour
  • BritishThermalUnit
  • Calorie
  • FootPound
  • Joule
  • Kilocalorie
  • KilogramMeter
  • Kilojoule
  • KilowattHour
  • MetricHorsepowerHour
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 netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 is compatible.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 2.0

    • No dependencies.
  • .NETFramework 4.5

  • .NETFramework 4.6

  • .NETFramework 4.7

    • No dependencies.
  • .NETStandard 2.0

    • 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
0.2.2 12,037 3/25/2019
0.2.1 1,012 6/5/2018
0.2.0 1,092 4/19/2018
0.1.4 1,011 4/11/2018
0.1.3 994 4/4/2018
0.1.2 1,170 3/30/2018
0.1.1 1,027 3/26/2018
0.1.0 1,017 3/23/2018