能将类,List,Dictionary类型转换成json同时也能反转换为实体
如以下类的转换案例,希望能帮助大家。
class A{
public int b = 1;
public string c = "abcd";
public Dictionary d = new Dictionary();
public Dictionary e = new Dictionary();
public List f = new List();
}
A a = new A();
string json = JsonMapper.ToJson(a);
A a1 = JsonMapper.ToObject(json);
如有疑问请下方咨询
1