码迷,mamicode.com
首页 > 其他好文 > 详细

XML to Entity

时间:2014-10-21 11:53:18      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:des   blog   ar   for   div   log   ad   new   as   

 public static T GetEntityByXml<T>(string xml, string rootNode=null) where T : new()
        {
            if (string.IsNullOrEmpty(xml)) return new T();
            if (!string.IsNullOrEmpty(rootNode))
            {
                xml = string.Format("<{0}>{1}</{0}>", rootNode, xml);
            }
            using (TextReader reader = new StringReader(xml))
            {
                var serializer = new XmlSerializer(typeof(T));
                return (T)serializer.Deserialize(reader);
            }
        }

  

XML to Entity

标签:des   blog   ar   for   div   log   ad   new   as   

原文地址:http://www.cnblogs.com/Wolfmanlq/p/4039695.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!