FileStream vs/differences StreamWriter?
What is different between FileStream and StreamWriter in dotnet? A FileStream is a Stream. Like all Streams it only deals with byte[] data. A StreamWriter : TextWriter is a Stream-decorator. A TextWriter encodes the primitive type like string, int and char to byte[] and then writes hat to the linked Stream. What context are you … Read more