Stream1 string to stream to string 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 ); 2011. 8. 31. 이전 1 다음