본문 바로가기
Application/C#.net

string to stream to string

by 현이빈이 2011. 8. 31.
반응형
string 을 Stream 으로 변환하자.

string data = "Testing data";
//string to stream 
byte[] byteArray = Encoding.ASCII.GetBytes(data); 
MemoryStream stream = new MemoryStream(byteArray);  


다시 Stream 을 string 으로 변환

//stream to string 
StreamReader reader = new StreamReader(stream); 
string text = reader.ReadToEnd(); 
Console.WriteLine( text ); 
반응형