As I am currently learning C#, I made a small program to calculate X amount of fibonacci numbers. However, as the numbers quickly get quite large, not even an unsigned long can hold the numbers. How do I solve this problem? Make my own superlarge integer datatype?
Share
Are you using .NET4 or newer? If so you could use
BigInteger.