Is it possible in C# to divide two binary numbers. All I am trying to do is:
// get int value into binary format, see below
int days = 68;
string binary = Convert.ToString(days, 2);
// but how do you divide the binary numbers? , what format should be used?
01000100 / 000000100 = 4
Little confused any help would be great.