Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 618 Bytes

SerializeCollection.md

File metadata and controls

21 lines (17 loc) · 618 Bytes

Serializing Collections

This sample serializes a collection to JSON.

var videogames = new List<string>
{
    "Starcraft",
    "Halo",
    "Legend of Zelda"
};

var json = JsonConvert.SerializeObject(videogames);

Console.WriteLine(json);
// ["Starcraft","Halo","Legend of Zelda"]

snippet source | anchor