c# - What is the difference of Stream and MemoryStream -
stream
and MemoryStream
What is the main difference in C #?
If I need to create a stream
without a file, will I use MemoryStream
instead?
< about provides a general view of the sequence of bytes. This is an abstract class. So you can not create an example of memorystream
goes out of the normal class stream
. from the stream
:
stream
. You must use one of the derivative classes, such as, etc.
Comments
Post a Comment