This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace ArbitraryPrecision | |
{ | |
#region Usings | |
using System; | |
using System.Linq; | |
using System.Numerics; | |
using System.Text.RegularExpressions; | |
#endregion | |
/// <summary>Represents an arbitrarily large decimal number.</summary> | |
public struct BigDecimal : IFormattable , IComparable , IComparable < BigDecimal > , IEquatable < BigDecimal > |