I want to perform simple arithmetic operation in huge amount of number, as implement below
string t = "22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222";
//decimal number = 22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222; Integral Constant is tooo large
//long number = 22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222; Integral Constant is tooo large
//string ans = t / 2; // get answer in numeric form
How can i perform? any idea will be appreciated.
EDIT I am using 3.5 .net Framework.