ExtendedNumerics.BigDecimal 2022.108.525

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

// Install ExtendedNumerics.BigDecimal as a Cake Tool
#tool nuget:?package=ExtendedNumerics.BigDecimal&version=2022.108.525                

BigDecimal

An arbitrary precision floating-point decimal class.

Usage:

Console.WriteLine(BigDecimal.Precision);
// 5000
BigDecimal.Precision = 200; // Tone down the precision for this demo.
Console.WriteLine(BigDecimal.Precision);
// 200

BigDecimal goldenRatio = BigDecimal.Divide(BigDecimal.Add(BigDecimal.One, BigDecimal.Pow(5d, 0.5d)), BigDecimal.Parse("2"));
BigDecimal almostInteger = BigDecimal.Pow(goldenRatio, 23);
Console.WriteLine(almostInteger);
// 64079.000015605783843835009599722600391518338454771405992063505171997949372951472701529422358634915404757740005027416333594519349348824890921372720968246769717009339797514969003242216358994087504831741

// Like other floating point implementations, it stores a Mantissa and an Exponent and operates on those.
// The difference is, these values are of type BigInteger, and so can be arbitrary precision.
Console.WriteLine(almostInteger.Mantissa);
// 64079000015605783843835009599722600391518338454771405992063505171997949372951472701529422358634915404757740005027416333594519349348824890921372720968246769717009339797514969003242216358994087504831741
Console.WriteLine(almostInteger.Exponent);
// -193




BigDecimal X = BigDecimal.Parse("0.000551876379690949227373068432671081677704194260485651214128035320088300220750");
Console.WriteLine(X);
// 0.00055187637969094922737306843267108167770419426048565121412803532008830022075

BigDecimal result = BigDecimal.Divide(BigDecimal.One, X);
Console.WriteLine(result);
// 1812.000000000000000000000000000000000000000000000000000000000000000000000001


Console.WriteLine(BigDecimal.Pi);
// 3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196

Console.WriteLine(BigDecimal.E);
// 2.71828182845904523536028747135266249775724709369995957496696762772407663035354759457138217852516642749193200305992181741359662904357290033429526059563073813232862794349076323382988075319525101901157383

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.  net6.0-windows7.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 3.1

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net6.0-windows7.0

    • No dependencies.

NuGet packages (9)

Showing the top 5 NuGet packages that depend on ExtendedNumerics.BigDecimal:

Package Downloads
NPOI

.NET port of Apache POI

NCalc.Core

Assembly with the core logic of NCalc.

ExtendedNumerics.BigComplex

Arbitrary precision complex (imaginary) numbers.

Mud.NPOI

.NET port of Apache POI

UnicontaPages

UnicontaPages is dll containing Pages related code for WPF application. To use the UnicontaPages you will need your own Uniconta APP identifier. http://www.uniconta.com/en/developers/

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on ExtendedNumerics.BigDecimal:

Repository Stars
nissl-lab/npoi
a .NET library that can read/write Office formats without Microsoft Office installed. No COM+, no interop.
ncalc/ncalc
NCalc is a fast and lightweight expression evaluator library for .NET, designed for flexibility and high performance. It supports a wide range of mathematical and logical operations.
Version Downloads Last updated
3000.0.3.40 1,101 2/10/2025
3000.0.2.358 7,325 12/23/2024
3000.0.1.312 46,580 11/7/2024
3000.0.0.280 65,321 10/6/2024
2025.1005.0.264 5,463 9/20/2024
2025.1004.0.247 12,254 9/3/2024
2025.1003.0.225 8,854 8/12/2024
2025.1002.0.190 58,839 7/8/2024
2025.1001.2.129 2,539,561 5/8/2024
2025.1000.2.122 3,543 5/1/2024
2025.1000.1.121 336 4/30/2024
2023.1000.4.35 36,061 2/4/2024
2023.1000.3.328 4,673 11/25/2023
2023.1000.1.258 123,959 9/15/2023
2023.1000.0.230 2,257,178 8/18/2023
2023.213.1010 626 8/1/2023
2023.208.330 257 7/27/2023
2023.207.1947 256 7/27/2023
2023.207.1303 246 7/26/2023
2023.206.2221 242 7/26/2023
2023.186.1012 357 7/5/2023
2023.121.1953 7,868 5/2/2023
2022.346.2122 51,779 12/13/2022
2022.187.2158 1,505 7/7/2022
2022.187.1650 513 7/6/2022
2022.108.525 1,653 4/18/2022
2022.73.321 565 3/14/2022
1.0.0.1 2,416 2/24/2021
1.0.0 1,047 9/2/2019