■ MemoryStream 클래스를 사용해 문자열에서 메모리 스트림을 구하는 방법을 보여준다.
▶ MemoryStream 클래스 : 문자열에서 메모리 스트림 구하기 예제 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
using System; using System.IO; using(MemoryStream stream = GetMemoryStream("ABCDEFGHIJKLMNOPQRSTUVWXYZ")) { foreach(byte value in stream.ToArray()) { Console.Write(value.ToString("x2")); } Console.WriteLine(); } // 4142434445464748494a4b4c4d4e4f505152535455565758595a |
▶ MemoryStream 클래스 : 문자열에서 메모리 스트림 구하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
using System.IO; using System.Text; #region 메모리 스트림 구하기 - GetMemoryStream(source) /// <summary> /// 메모리 스트림 구하기 /// </summary> /// <param name="source">소스 문자열</param> /// <returns>메모리 스트림</returns> public MemoryStream GetMemoryStream(string source) { byte[] sourceByteArray = Encoding.UTF8.GetBytes(source); MemoryStream stream = new MemoryStream(sourceByteArray); return stream; } #endregion |