using System;
using System.Collections.Generic;
namespace ConsoleApp127 {
class Program {
static void Main(string[] args) {
var table = NetJSON.NetJSON.Deserialize<IDictionary<string, object>[]>(@"[{""title"": ""\u56f3\u9762""}]");
Console.WriteLine(NetJSON.NetJSON.Serialize(table));
}
}
}
I have noticed that the following line emits dictionary's key
title
into console output:https://github.com/rpgmaker/NetJSON/blob/d0bb1cda0aa802e20805d5f3e1a91ad5fa0e42ae/NetJSON/NetJSON.cs#L5189
Sample: