I\'m looking for a way to convert a long string of binary to a hex string.
the binary string looks something like this \"01100110100101110010011101010111001101
\"01100110100101110010011101010111001101
This might help you:
string HexConverted(string strBinary) { string strHex = Convert.ToInt32(strBinary,2).ToString("X"); return strHex; }