Is there a simple way or method to convert an Stream into a byte[] in C#?
|
|
Call next function like
Function:
|
|||||||||||||||||
|
|
The shortest solution I know:
|
|||||||||||||
|
|
The handy helper function to have is:
Then use that to copy to a
Edit: originally I suggested using Jason's answer for a It's probably simpler for most cases to use the above general solution, but supposing you did want to read directly into an array that is
That is, repeatedly call |
|||||||||||||
|
|
|||
|
|
|
Not really the answer to the question but if your Stream comes from a file you can use |
|||
|
|
|
Ok, maybe I'm missing something here, but this is the way I do it:
Regards |
|||||
|
|
Quick and dirty technique:
Test:
I would ask, why do you want to read a stream into a byte[], if you are wishing to copy the contents of a stream, may I suggest using MemoryStream and writing your input stream into a memory stream. |
|||||||||||||
|
|
You could also try just reading in parts at a time and expanding the byte array being returned:
|
|||
|
|
A slightly more complicated solution is necesary is Edit: If your stream does not support the
|
|||||||
|