Info
Version: | 1.1.0 |
Author(s): | irperez |
Last Update: | Tuesday, March 24, 2015 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/irperez/Cubico |
NuGet Url: | https://www.nuget.org/packages/Cubico |
Install
Install-Package Cubico
dotnet add package Cubico
paket add Cubico
Cubico Download (Unzip the "nupkg" after downloading)
Dependencies
- Newtonsoft.Json(6.0.3)
Tags
var twoFeet = new Measurement(2, Units.Length.Feet);
var twelveInches = new Measurement(12, Units.Length.Inches);
var result = twoFeet + twelveInches;
Console.WriteLine(result.GetValueAs(Units.Length.Yards).ToString()); // = 1 yard.