using System.Collections.Generic;
public static void Main()
var source = new List<object>{
new Dictionary<string,object>{ { "data", "Name" }, },
new Dictionary<string,object>{ { "data", "Description" }, },
var json = JsonConvert.SerializeObject( source, Formatting.Indented );
Console.WriteLine( json );