[C#/COMMON/ZEROFORMATTER] ZeroFormatterSerializer 클래스 : Serialize/Deserialize 정적 메소드를 사용해 직렬화하기
■ ZeroFormatterSerializer 클래스의 Serialize/Deserialize 정적 메소드를 사용해 직렬화하는 방법을 보여준다. ▶ Employee.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 70 71 72 73 |
using System; using System.Collections.Generic; using ZeroFormatter; namespace TestProject { /// <summary> /// 직원 /// </summary> [ZeroFormattable] [Serializable] public class Employee { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region ID - ID /// <summary> /// ID /// </summary> [Index(0)] public virtual int ID { get; set; } #endregion #region 성명 - Name /// <summary> /// 성명 /// </summary> [Index(1)] public virtual string Name { get; set; } #endregion #region 부서 - Department /// <summary> /// 부서 /// </summary> [Index(2)] public virtual string Department { get; set; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 리스트 구하기 - GetList(count) /// <summary> /// 리스트 구하기 /// </summary> /// <param name="count">카운트</param> /// <returns>리스트</returns> public static List<Employee> GetList(int count) { List<Employee> list = new List<Employee>(); for(int i = 0; i < count; i++) { list.Add(new Employee { ID = i + 1, Name = $"직원 {i + 1}", Department = $"{i % 4 + 1}" }); } return list; } #endregion } } |
▶ Program.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 |
using System; using System.Collections.Generic; using ZeroFormatter; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { Console.Title = "ZeroFormatterSerializer 클래스 : Serialize/Deserialize 정적 메소드를 사용해 직렬화하기"; List<Employee> sourceList = Employee.GetList(10); byte[] byteArray = ZeroFormatterSerializer.Serialize<List<Employee>>(sourceList); List<Employee> targetList = ZeroFormatterSerializer.Deserialize<List<Employee>>(byteArray); foreach(Employee employee in targetList) { Console.WriteLine(employee.Name); } } #endregion } } |
※ 패키지 설치 : ZeroFormatter 1.