I'm solving problems in Project Euler. Most of the problems solved by
- big numbers that exceeds ulong,
Ex : ulong number = 81237146123746237846293567465365862854736263874623654728568263582;
- very sensitive decimal numbers with significant digits over 30
Ex : decimal dec = 0,3242342543573894756936576474978265726385428569234753964340653;
- arrays that must have index values that exceeds biggest int value.
Ex : bool[] items = new bool[213192471235494658346583465340673475263842864836];
I found a library called IntX to solve this big numbers. But I wonder how can I solve this problems with basic .NET types ?
Thanks for the replies !