Possible Duplicate:
How to convert an int[,] to byte[] in C#
I want to send a 2D string array (string[n, m]) via socket and it has to be converted to byte array. How can I do that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use the first 8 bytes to store the dimension of the array:
and to convert the byte array back to a 2D string array: