I have a binary array. In the process of conversion it into string,due to some data my string gets terminated. and it ignores next data.Have a look on my code. Is there is any mistake??
str += (char)chunkData[index].ToString();
Later on i want to display it on textbox. My array contains following data as display in hex editor.
xÚb```e``*bxÚb`
¨€ˆY8ÄX¡˜A‰“yuZs˜#µjтЬi@š
È4„è0
I tried this but nothing change.. str = System.Text.Encoding.ASCII.GetString(chunkData);