An arbitrary size and precision date and time stored using a BigReal.
$ dotnet add package BigDateTimeAn arbitrary size and precision date and time stored using a BigReal, that can represent any moment, even 60242/1/5 23:59:22.
The first of its kind to my knowledge.
DateTime only supports years 1 to 9999)DateTime is only precise to 100 nanoseconds / 0.0000001 seconds)DateTime)Console.WriteLine(BigDateTime.Now().AddYears(100_000)); // 102024/10/24 23:59:44
Console.CursorVisible = false;
while (true) {
Console.SetCursorPosition(0, Console.CursorTop);
Console.Write(BigDateTime.Now().ToLongString().PadRight(50));
Thread.Sleep(TimeSpan.FromSeconds(0.05));
}