mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-22 01:16:35 +08:00
整理一下项目文件
This commit is contained in:
41
AIStudio.Wpf.DiagramHelper/Helpers/XmlSerializeHelper.cs
Normal file
41
AIStudio.Wpf.DiagramHelper/Helpers/XmlSerializeHelper.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
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.DiagramHelper.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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user