0
Alguien sabe como hacer serialización en C#
4 odpowiedzi
0
Serializing data to a file?
0
como serializar un objeto
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.
0
oh and for JSON you can use NewtonSoft