What is the difference among filestream, memoryStream and byte stream, how do i use each properly. i confused by them
appreciate for any advice
FileStream is a stream backed by a file. MemoryStream is a stream backed only by an in-memory byte array. A StreamReader is used to read text from streams.