I have two strings:
string a = "00001"; /* which is decimal 1 I've converted with next string: string a = Convert.ToString(2, 2).PadLeft(5, '0'); */ string b = "00010"; I want to perform binary addition between the two so the answer will be 00011 ( 3).