0

Alguien sabe como hacer serialización en C#

6th Sep 2018, 3:38 PM
Campillo Exterminador R
Campillo Exterminador R - avatar
4 Answers
0
Serializing data to a file?
7th Sep 2018, 4:10 AM
John
John - avatar
0
como serializar un objeto
7th Sep 2018, 5:21 AM
Campillo Exterminador R
Campillo Exterminador R - avatar
0
try serializing the object properties then at runtime deserialize the object via file (text file or System.Properties) Person Object - Name - Age You could do your own custom serialization or use XML or JSON custom: Jeff_Anderson&42; Steve_Jobs&12; read each line and split the data on the & character. Hope this helps.
9th Sep 2018, 8:34 AM
John
John - avatar
0
oh and for JSON you can use NewtonSoft
9th Sep 2018, 8:35 AM
John
John - avatar