Click here to Skip to main content
15,888,116 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi sir,
i have 2 questions
1.What happens when you change the app.config file at run time?
2.write a function to add two 50 digit numbers?
Posted

1) The file changes. The values in your program won't, unless you reload them from teh new file content.
2) Try:
C#
BigInteger AddBig(BigInteger x, BigInteger y)
    {
    return x + y;
    }
 
Share this answer
 
Comments
Espen Harlinn 13-Apr-13 6:41am    
;)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900