I have two string namely string1 and string2. they contain binary numbers and I want to manipulate them with different kinds of operations.
for example:
string string1 = "1000";
string string2 = "1011";
how can I Add/Subtract string1 and string2 so that:
AnswerToAddtion = 10011 //1000 + 1011
AnswerToSubtratction = 1101 //1000-1011