using Newtonsoft.Json.Linq;
using System.Collections.Generic;
using Newtonsoft.Json.Serialization;
public static void Main()
var dict = new Dictionary<string, string>();
dict.Add("Chave", "Valor");
dict.Add("Chave2", "Valor");
var settings = new JsonSerializerSettings()
ContractResolver = new CamelCasePropertyNamesContractResolver()
var serialized = JsonConvert.SerializeObject(dict, settings);
Console.WriteLine("Hello World " + serialized.ToString());