Skip to content

Instantly share code, notes, and snippets.

View Misaka12456's full-sized avatar
✍️
Arcaea Fanmade Charting...

御坂12456 Misaka12456

✍️
Arcaea Fanmade Charting...
View GitHub Profile
@Misaka12456
Misaka12456 / 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
{