Skip to content

Instantly share code, notes, and snippets.

View MisakaRehana's full-sized avatar
💦
Dying Girl's Marvelous Hope

御坂れはな MisakaRehana

💦
Dying Girl's Marvelous Hope
View GitHub Profile
@MisakaRehana
MisakaRehana / BigFloat.cs
Created August 9, 2023 05:44
[C#][Utils][System.Enhance Utils Library] BigFloat - Float number with no limit of precision and storage range
using System.Numerics;
using System.Text;
namespace System.Enhance.Basics
{
/// <summary>
/// Represents a float number with no limit of precision and storage range.
/// </summary>
public struct BigFloat
{