UoMConverter 0.9.3.2

dotnet add package UoMConverter --version 0.9.3.2
                    
NuGet\Install-Package UoMConverter -Version 0.9.3.2
                    
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="UoMConverter" Version="0.9.3.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="UoMConverter" Version="0.9.3.2" />
                    
Directory.Packages.props
<PackageReference Include="UoMConverter" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add UoMConverter --version 0.9.3.2
                    
#r "nuget: UoMConverter, 0.9.3.2"
                    
#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.
#:package UoMConverter@0.9.3.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=UoMConverter&version=0.9.3.2
                    
Install as a Cake Addin
#tool nuget:?package=UoMConverter&version=0.9.3.2
                    
Install as a Cake Tool

UoMConverter

Build Status Nuget License Powered By: Antigravity

UoMConverter is a high-performance, extensible unit of measure conversion library for .NET, leveraging source generators for maximum efficiency and a zero-allocation discovery path.

Features

  • πŸš€ High-Performance Core: Optimized .NET engine using source-generated conversion logic for zero-allocation discovery and lightning-fast execution.
  • 🧩 Extensible Architecture: Easily add custom physical quantities and units via simple JSON definitions with built-in localization support.
  • 🏘️ Source Generated Registry: The entire unit registry and conversion formulas are baked in at compile-time, eliminating runtime reflection and dictionary lookups.
  • πŸ›‘οΈ Mission-Critical Precision: Achieves 100% logic and branch coverage, ensuring mathematical reliability across all dimensions.
  • 🧡 Thread Safe & Stateless: Designed for high-concurrency environments like Web APIs and multithreaded desktop applications.
  • πŸ—ΊοΈ WASM Optimized: Tiny memory footprint and near-instant startup, perfect for browser-native WebAssembly deployments.

Quick Start

Installation

dotnet add package UoMConverter

Basic Usage

The UoMConverter class provides a high-level API for easy unit conversion and discovery.

using UoMConverter;

var converter = new UoMConverter.UoMConverter();

// Simple conversion by string names or abbreviations
double grams = converter.Convert(1.0, "Kilogram", "Gram");
Console.WriteLine($"1kg is {grams}g"); // Output: 1000

// Using abbreviations
double meters = converter.Convert(100, "cm", "m");
Console.WriteLine($"100cm is {meters}m"); // Output: 1

// Advanced: Handling Ambiguity with Smart Detection (Default: true)
// Resolves units like "A" (Ampere vs Angstrom) by finding a common quantity.
double current = converter.Convert(10, "A", "mA", useSmartDetection: true);

// Advanced: Explicit Dimension for Maximum Performance
// Skips discovery logic by providing the physical quantity name.
double result = converter.Convert(1.5, "km", "m", dimension: "Length");

Discovery API (UI Ready)

Perfect for populating dropdowns or search interfaces.

var converter = new UoMConverter.UoMConverter();

// Get all available physical quantities
var dimensions = converter.GetDimensions(); // ["Mass", "Length", "Temperature", ...]

// Get unit list for a specific dimension with metadata
var units = converter.GetUnitList("Mass");
foreach (var (name, abbr, plural) in units)
{
    Console.WriteLine($"{name} ({abbr}) - {plural}");
}

Integration Examples

ASP.NET Core (Dependency Injection)

For web applications, register the converter as a singleton in your Program.cs:

// Program.cs
builder.Services.AddSingleton<IUoMConverter, UoMConverter.UoMConverter>();

// In your Controller or Service
public class ConversionController : ControllerBase
{
    private readonly IUoMConverter _converter;
    
    public ConversionController(IUoMConverter converter)
    {
        _converter = converter;
    }

    [HttpGet("convert")]
    public IActionResult GetConversion(double value, string from, string to)
    {
        var result = _converter.Convert(value, from, to);
        return Ok(new { Value = value, From = from, To = to, Result = result });
    }
}

Console Application (Localization Support)

The library supports regional abbreviations and pluralization out of the box.

using UoMConverter;

var converter = new UoMConverter.UoMConverter();

// Use specific cultures for unit discovery
var unitsEn = converter.GetUnitList("Mass", "en-US");
var unitsDe = converter.GetUnitList("Mass", "de-DE");

// High-performance conversion in a loop
for (int i = 0; i < 1000; i++)
{
    var res = converter.Convert(i, "Meter", "Foot");
}

Advanced: Adding Custom Units

Create a JSON file in your project and include it as an AdditionalFiles item in your .csproj.

{
  "Name": "Currency",
  "BaseUnit": "Credit",
  "Units": [
    {
      "SingularName": "Credit",
      "PluralName": "Credits",
      "FromUnitToBaseFunc": "val",
      "FromBaseToUnitFunc": "val",
      "Localization": [ { "Culture": "en-US", "Abbreviations": ["CR"] } ]
    },
    {
      "SingularName": "Gold",
      "PluralName": "Gold",
      "FromUnitToBaseFunc": "val * 100",
      "FromBaseToUnitFunc": "val / 100",
      "Localization": [ { "Culture": "en-US", "Abbreviations": ["GP"] } ]
    }
  ]
}

License

Distributed under the MIT License. See LICENSE for more information.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.9.3.2 143 3/1/2026
0.9.3.1 122 3/1/2026
0.9.3 118 3/1/2026
0.9.2.13 124 2/28/2026
0.9.2.12 123 2/25/2026
0.9.2.11 120 2/24/2026
0.9.2.10 124 2/20/2026
0.9.2.9 123 2/20/2026
0.9.2.8 118 2/19/2026
0.9.2.7 125 2/19/2026
0.9.2.6 129 2/14/2026
0.9.2.5 122 2/14/2026
0.9.2.4 127 2/13/2026
0.9.2.3 118 2/13/2026
0.9.0 123 2/13/2026