Posts by rafaeldals • 93 points
3 posts
-
8
votes1
answer11054
viewsQ: Streamwriter Special Characters with Encoding.ASCII C#
I am writing in a file via Streamwriter using the encoding Encoding.ASCII. A situation has appeared where I need to write the letter "Ç". Only if I try to do that, the file leaves the character "?".…
-
1
votes2
answers918
viewsA: Turn Stream into Byte Array
Good!! I was able to find a solution to my problem. It is a re-implementation of the Memorystream class, called Memorytributary, and works with memory allocation in a different way than…
-
0
votes2
answers918
viewsQ: Turn Stream into Byte Array
Good!! I have a ZIP file stream with a size of approx. 450 Mb, and I need to convert it to an array of bytes. For this, the Memorystream (System.IO.Memorystream) is used by default, following the…