I have the following code that creates a very big number (BigInteger) which is converted then into a string.
BigInteger
string
// It\'s a console app
Here is another approach which is faster compared to BigInteger.Parse()
BigInteger.Parse()
public static BigInteger ToBigInteger(string value) { BigInteger result = 0; for (int i = 0; i < value.Length; i++) { result = result * 10 + (value[i] - '0'); } return result; }