Hey,
My buffer contains a short int, some char[], and a structure in form of
a byte array.
Read the string as:
TextBox4.Text = System.Text.Enc oding.ASCII.Get String(buffer1, 0, 31);
Read the int as:
TextBox2.Text = BitConverter.To Int16(buffer,0) .ToString();
How do I get the structure value to display.
Thanks alot..
My buffer contains a short int, some char[], and a structure in form of
a byte array.
Read the string as:
TextBox4.Text = System.Text.Enc oding.ASCII.Get String(buffer1, 0, 31);
Read the int as:
TextBox2.Text = BitConverter.To Int16(buffer,0) .ToString();
How do I get the structure value to display.
Thanks alot..
Comment