mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace AIStudio.Wpf.BaseDiagram.Helpers
|
|
{
|
|
public class XmlSerializeHelper
|
|
{
|
|
public static string XmlSerialize<T>(T obj)
|
|
{
|
|
using (StringWriter sw = new StringWriter())
|
|
{
|
|
Type t = obj.GetType();
|
|
XmlSerializer serializer = new XmlSerializer(obj.GetType());
|
|
serializer.Serialize(sw, obj);
|
|
sw.Close();
|
|
return sw.ToString();
|
|
}
|
|
}
|
|
|
|
public static T DESerializer<T>(string strXML) where T : class
|
|
{
|
|
try
|
|
{
|
|
using (StringReader sr = new StringReader(strXML))
|
|
{
|
|
XmlSerializer serializer = new XmlSerializer(typeof(T));
|
|
return serializer.Deserialize(sr) as T;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|