+ 4
Can someone explain to me converting and using JSON data fornat in VisualStudio with C#? Please help i have it for homework
i dont know how to use json and save lists in it. I need to make a Blog system and i cant save the profile info (username pasword) in a list in json format please help
2 Answers
+ 2
basically you are exporting an object or variables to a file in Json format
of which is easy for humans and machines to read
this is normally used to save data for when the program turns off
like saving game progress
as it can be read by the program
this process is called serialization
0
thank you very much for telling me what serialization is now i just need to know how to use it whit C#