Reading multiple files in a Stream
问题 Hei! How can I read multiple text files at once? What I want to do is read a series of files and append all of them to one big file. Curently I am doing this: take each file and open it with a StreamReader read the StreamReader completely in a StringBuilder and append it to the current StreamBuilder check if the memory size is exceeded and if yes write the StringBuilder at the end of the file and empty the StrigBuilder Unfortunately, I observed that the reading speed avg is only 4MB/sec. I