How do you convert between hexadecimal numbers and decimal numbers in C#?
Convert binary to Hex
Convert.ToString(Convert.ToUInt32(binary1, 2), 16).ToUpper()