Skip to content

Instantly share code, notes, and snippets.

View AmrAlSayed0's full-sized avatar
🏠
Working from home

Amr AmrAlSayed0

🏠
Working from home
  • Compu Master Business Solutions
  • Cairo, Egypt
  • 17:09 (UTC +03:00)
  • LinkedIn in/amralsayed
View GitHub Profile
@AmrAlSayed0
AmrAlSayed0 / BigDecimal.cs
Created July 29, 2015 22:51
A class that represents an arbitrarily large decimal number.
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 >