■ XmlSerializer 클래스의 Deserialize 메소드를 사용해 객체를 역직렬화하는 방법을 보여준다.
▶ 예제 코드 (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 |
using System; using System.IO; using System.Xml.Serialization; #region 객체 역직렬화하기 - DeserializeObject(xml, objectType) /// <summary> /// 객체 역직렬화하기 /// </summary> /// <param name="xml">XML</param> /// <param name="objectType">객체 타입</param> /// <returns>역직렬화 객체</returns> public object DeserializeObject(string xml, Type objectType) { XmlSerializer xmlSerializer = new XmlSerializer(objectType); object targetObject = xmlSerializer.Deserialize(new StringReader(xml)); return targetObject; } #endregion |