Tuesday, October 26, 2010

An introduction to BIG INTEGER class of dotnet 4.0

Introduction
BigInteger class that resides in the System.Numerics namespace helps in representing any large integer without any loss of precision. It has been introduced earlier in dotnet framework 3.5 but was removed(don’t know the exact reason). However, it is again back in framework 4.0
Using the code
Example 1: To find the factorial of 100.
1.jpg

Read more: Codeproject