I have a text file in the form of a byte[].
I cannot save the file anywhere.
I would like to read all lines/text from this ‘file’.
Can anyone point me in the right direction on how I can read all the text from a byte[] in C#?
Thanks!
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.
I would create a
MemoryStreamand instantiate aStreamReaderwith that, i.e:Then get the text a line at a time with:
Or the full file using: