public void Hashtable()
        {
            var result = new System.Collections.Hashtable {
                { "hello", "world" }
            }.ToJson();

            result.ShouldBe("{\"hello\":\"world\"}");
        }
Exemple #2
0
        public void Hashtable()
        {
            var result = new System.Collections.Hashtable { { "hello", "world" } }.ToJson();

            result.ShouldBe("{\"hello\":\"world\"}");
        }