Örnek:

string VHex = "78A5F";
string VBinary = String.Join(String.Empty, VHex.Select(c => Convert.ToString(Convert.ToInt32(c.ToString(), 16), 2).PadLeft(4, '0')));
MessageBox.Show(VBinary);