■ BinaryFormatter 클래스의 Serialize 메소드를 사용해 객체를 직렬화하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
using System.IO; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters.Binary; #region 객체 직렬화하기 - SerializeObject(sourceObject) /// <summary> /// 객체 직렬화하기 /// </summary> /// <param name="sourceObject">소스 객체</param> /// <returns>직렬화 객체 바이트 배열</returns> public byte[] SerializeObject(object sourceObject) { BinaryFormatter binaryFormatter = new BinaryFormatter(); MemoryStream memoryStream = new MemoryStream(); binaryFormatter.Context = new StreamingContext(StreamingContextStates.Clone); binaryFormatter.Serialize(memoryStream, sourceObject); return memoryStream.ToArray(); } #endregion |