Advertisement
Layvu

Serializer

May 31st, 2023
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.30 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace Reflecs;
  5.  
  6. class Student
  7. {
  8.     public string Name { get; set; }
  9.     public int Age { get; set; }
  10.     public string University { get; set; }
  11. }
  12.  
  13.  
  14. class Program
  15. {
  16.     static void Main()
  17.     {
  18.         var student = new Student
  19.         {
  20.             Name = "Kendrick Lamar",
  21.             Age = 35,
  22.             University = "UrFU"
  23.         };
  24.  
  25.         var serialized = Serializer.Serialize(student);
  26.         Console.WriteLine($"Serialized: {serialized}");
  27.  
  28.         var deserialized = Serializer.DeserializeObject<Student>(serialized);
  29.         Console.WriteLine($"Deserialized: {deserialized.Name}, {deserialized.Age}, {deserialized.University}");
  30.     }
  31. }
  32.  
  33. class Serializer
  34. {
  35.     public static string Serialize(object obj)
  36.     {
  37.         var properties = obj.GetType().GetProperties();
  38.         var serializedString = "";
  39.         foreach (var property in properties)
  40.         {
  41.             if (property.CanRead)
  42.             {
  43.                 var propertyName = property.Name;
  44.                 var propertyValue = property.GetValue(obj);
  45.  
  46.                 var serializedProperty = $"{propertyName}:{propertyValue};";
  47.                 serializedString += serializedProperty;
  48.             }
  49.         }
  50.         return serializedString;
  51.     }
  52.  
  53.     public static T DeserializeObject<T>(string serializedString) where T : new()
  54.     {
  55.         var obj = new T();
  56.         var type = typeof(T);
  57.         var properties = type.GetProperties();
  58.  
  59.         var serializedProperties = serializedString.Split(';');
  60.         foreach (var serializedProperty in serializedProperties)
  61.         {
  62.             var propertyData = serializedProperty.Split(':');
  63.  
  64.             if (propertyData.Length == 2)
  65.             {
  66.                 var propertyName = propertyData[0];
  67.                 var propertyValue = propertyData[1];
  68.  
  69.                 var property = properties.FirstOrDefault(p => p.Name == propertyName);
  70.  
  71.                 if (property != null && property.CanWrite)
  72.                 {
  73.                     var propertyType = property.PropertyType;
  74.                     var convertedValue = Convert.ChangeType(propertyValue, propertyType);
  75.  
  76.                     property.SetValue(obj, convertedValue);
  77.                 }
  78.             }
  79.         }
  80.  
  81.         return obj;
  82.     }
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement