Posts by Fredi • 21 points
1 post
-
2
votes2
answers3231
viewsA: Some method to save data from an Arraylist
You can serialize the object to JSON, save to a file, then read the file and deserialize the string using Json.net. string json = JsonConvert.SerializeObject(objeto); List<string[]> objeto =…