コード例 #1
0
        public void Hashtable()
        {
            var result = new System.Collections.Hashtable {
                { "hello", "world" }
            }.ToJson();

            result.ShouldBe("{\"hello\":\"world\"}");
        }
コード例 #2
0
ファイル: JsonWriterTests.cs プロジェクト: nicklv/n2cms
        public void Hashtable()
        {
            var result = new System.Collections.Hashtable { { "hello", "world" } }.ToJson();

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