Serializable в binary коллекции лист - C#

Узнай цену своей работы

Формулировка задачи:

прошу помочь, не могу понять как десериализовать коллекцию List ошибка в методе десериализации коллекции settings, как правильно сделать?
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Dynamic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Runtime.Serialization.Formatters.Binary;
  7. using System.Net;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Net.Mail;
  11. using System.Security.Permissions;
  12. namespace e_mail
  13. {
  14. [Serializable]
  15. public class Settings
  16. {
  17. public string LoginEmail { get; set; } // почтовое имя
  18. public string PasswordEmail { get; set; } // пароль
  19. public int SmtpPort { get; set; } // порт для smtp
  20. public string SmtpHost { get; set; } // сервер для отправки
  21. }
  22. class Program
  23. {
  24. static void Main(string[] args)
  25. {
  26. Settings options = new Settings();
  27. List<Settings> settings = new List<Settings>();
  28. Console.Write("Введите адрес электронной почты -> ");
  29. options.LoginEmail = Console.ReadLine();
  30. Console.Write("Введите пароль -> ");
  31. options.PasswordEmail = Console.ReadLine();
  32. Console.Write("Введите порт сервера -> ");
  33. options.SmtpPort = Convert.ToInt32(Console.ReadLine());
  34. Console.Write("Введите smtp сервер -> ");
  35. options.SmtpHost = Console.ReadLine();
  36. settings.Add(options);
  37. BinaryFormatter formatter = new BinaryFormatter();
  38. //получаем поток, куда будем записывать сериализованный объект
  39. using (FileStream stream = new FileStream("setings.dat", FileMode.OpenOrCreate))
  40. {
  41. formatter.Serialize(stream, options);
  42. Console.WriteLine("Объект сериализован");
  43. }
  44. // десериализация из файла people.dat
  45. using (FileStream stream = new FileStream("setings.dat", FileMode.Open))
  46. {
  47. settings = (List<Settings>)formatter.Deserialize(stream);
  48. Console.WriteLine("Объект десериализован: ");
  49. Console.WriteLine("login: {0} -> password: {1} -> port: {2} -> smtp сервер: {3}", settings[0].LoginEmail, settings[0].PasswordEmail, settings[0].SmtpPort, settings[0].SmtpHost);
  50. }
  51. Console.ReadLine();
  52. }
  53. }
  54. }

Решение задачи: «Serializable в binary коллекции лист»

textual
Листинг программы
  1. formatter.Serialize(stream, settings);

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

9   голосов , оценка 3.667 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут