using System.Collections.Generic;
private readonly Dictionary<string, object> _props = new Dictionary<string, object>();
public object this[string key]
get { return _props[key];}
set { _props[key] = value;}
public static void Main()
["sdf"] = new [] { "sdf", "sdf" }
Console.WriteLine(JsonConvert.SerializeObject(c));