UnitsNet 3.0.0
See the version list below for details.
dotnet add package UnitsNet --version 3.0.0
NuGet\Install-Package UnitsNet -Version 3.0.0
<PackageReference Include="UnitsNet" Version="3.0.0" />
<PackageVersion Include="UnitsNet" Version="3.0.0" />
<PackageReference Include="UnitsNet" />
paket add UnitsNet --version 3.0.0
#r "nuget: UnitsNet, 3.0.0"
#:package UnitsNet@3.0.0
#addin nuget:?package=UnitsNet&version=3.0.0
#tool nuget:?package=UnitsNet&version=3.0.0
Units.NET gives you all the common units of measurement and the conversions between them. It is light-weight, unit tested and supports PCL.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net35-client is compatible. |
This package has no dependencies.
NuGet packages (105)
Showing the top 5 NuGet packages that depend on UnitsNet:
| Package | Downloads |
|---|---|
|
UnitsNet.Serialization.JsonNet
A helper library for serializing and deserializing types in Units.NET using Json.NET. |
|
|
UnitsNet.NumberExtensions
Adds extension methods to number types to more easily create quantities, such as 5.Meters() instead of Length.FromMeters(5). |
|
|
Iot.Device.Bindings
This package provides a set of Device Bindings ("Device drivers") that use System.Device.Gpio package to communicate with sensors and microcontrollers. |
|
|
Honeybee.UI
UI library build with Eto Forms for editing Honeybee Schema (DotNet) on both Windows and Mac system. |
|
|
MetalHeaven.ExternalDataContracts
Metal Heaven Versioned Externals DataContracts |
GitHub repositories (8)
Showing the top 8 popular GitHub repositories that depend on UnitsNet:
| Repository | Stars |
|---|---|
|
microsoft/PowerToys
Microsoft PowerToys is a collection of utilities that supercharge productivity and customization on Windows
|
|
|
angularsen/UnitsNet
Makes life working with units of measurement just a little bit better.
|
|
|
dotnet/iot
This repo includes .NET Core implementations for various IoT boards, chips, displays and PCBs.
|
|
|
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
|
|
|
raspberry-sharp/raspberry-sharp-io
A .NET/Mono IO Library for Raspberry Pi
|
|
|
porrey/Virtual-ZPL-Printer
An ethernet based virtual Zebra Label Printer that can be used to test applications that produce bar code labels.
|
|
|
nanoframework/nanoFramework.IoT.Device
📦 This repo includes .NET nanoFramework implementations for various sensors, chips, displays, hats and drivers
|
|
|
BriefFiniteElementNet/BriefFiniteElement.Net
BriefFiniteElementDotNET (BFE.NET) is a library for linear-static Finite Element Method (FEM) analysis of solids and structures in .NET
|
| Version | Downloads | Last Updated |
|---|---|---|
| 6.0.0-pre019 | 23,083 | 12/7/2025 |
| 6.0.0-pre018 | 234 | 12/6/2025 |
| 6.0.0-pre017 | 137,004 | 7/29/2025 |
| 6.0.0-pre016 | 311 | 7/27/2025 |
| 6.0.0-pre015 | 429 | 7/26/2025 |
| 6.0.0-pre014 | 67,524 | 3/9/2025 |
| 6.0.0-pre013 | 11,942 | 12/29/2024 |
| 5.75.0 | 884,191 | 7/26/2025 |
| 5.74.0 | 608,905 | 4/2/2025 |
| 5.73.0 | 187,848 | 3/10/2025 |
| 5.72.0 | 3,470 | 3/10/2025 |
| 5.71.0 | 4,253 | 3/9/2025 |
| 5.70.0 | 227,106 | 2/26/2025 |
| 5.69.0 | 168,130 | 2/4/2025 |
| 5.68.0 | 1,897 | 2/4/2025 |
| 5.67.0 | 37,980 | 1/29/2025 |
| 5.66.0 | 98,345 | 1/19/2025 |
| 5.65.0 | 334,553 | 12/28/2024 |
| 5.64.0 | 2,639 | 12/26/2024 |
| 3.0.0 | 4,798 | 7/23/2014 |
v3.0.0: Clean up naming of units. Add information unit.
New:
* Add information units for bit, byte, kilobit, kilobyte, kibibit, kibibyte and so on up to exabyte
Breaking changes:
* Delete OtherUnit.Piece
* Move OtherUnit.Table/Teaspoon to Volume
* Rename Month30Days Year365Days units to Month and Year
* Fix plural naming of Pressure.KilogramsForcePerSquareCentimeterInOnePascal
* Fix plural naming of Ratio.PartsPer-units
* Custom units added manually via UnitSystem.MapUnitToAbbreviation()
Fixes:
* Fall back to US English culture when parsing/getting abbreviations
* Fall back to custom string if no abbreviation defined for unit
Behind the scenes:
* Replace T4 templates with PowerShell + JSON templates
* Support custom tolerance per unit in tests
* Support decimal and long base unit types (decimal used in Information unit)
* Move code more consistently into Custom/GeneratedCode folders
* Fix misc R# warnings
* Match R# cleanup profile in generated code