when will we use memory stream?
MemoryStream
is kind of wrapper over byte[]
that implements stream. You need it when you have class that reads from Stream
or writes to it, but you need to get/set raw bytes.
when will we use memory stream?
MemoryStream
is kind of wrapper over byte[]
that implements stream. You need it when you have class that reads from Stream
or writes to it, but you need to get/set raw bytes.
精彩评论