Hey all, I'm trying what must be the very simplest of tasks but I can't work out how to get my binary string to a textbox! Any suggestions?
//Existing string from another text box "rev"
MemoryStream ms_memStream = new MemoryStream();
BinaryWriter br_binaryWriter = new BinaryWriter(ms_memStream);
try
{
br_binaryWriter.Write(rev);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
Thanks for reading!