This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// convert stream to string | |
StreamReader reader = new StreamReader(stream); | |
string text = reader.ReadToEnd(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// convert string to stream | |
byte[] byteArray = Encoding.UTF8.GetBytes(contents); | |
//byte[] byteArray = Encoding.ASCII.GetBytes(contents); | |
MemoryStream stream = new MemoryStream(byteArray); |