This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
SerialXML.cs
69 lines (60 loc) · 1.78 KB
/
SerialXML.cs
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Xml.Serialization;
namespace SDKPaylineDotNet
{
public class SerialXML
{
public static bool Save(string Dir, string FileName, object classIn)
{
FileStream fs = null;
try
{
if (!Directory.Exists(Dir))
Directory.CreateDirectory(Dir);
string XMLFile = Path.Combine(Dir, FileName);
fs = new FileStream(XMLFile, FileMode.Create, FileAccess.Write);
XmlSerializer ser = new XmlSerializer(classIn.GetType());
ser.Serialize(fs, classIn);
return true;
}
catch (Exception e)
{
Console.WriteLine(e.Message);
return false;
}
finally
{
if (fs != null)
fs.Close();
}
}
public static object Load(string Dir, string FileName, Type typeIn)
{
FileStream fs = null;
try
{
string XMLFile = Path.Combine(Dir, FileName);
if (!File.Exists(XMLFile))
{
return Activator.CreateInstance(typeIn, null);
}
fs = new FileStream(XMLFile, FileMode.Open, FileAccess.Read);
XmlSerializer ser = new XmlSerializer(typeIn);
object o = ser.Deserialize(fs);
return o;
}
catch
{
return Activator.CreateInstance(typeIn, null);
}
finally
{
if (fs != null)
fs.Close();
}
}
};
}