string arr = "['one','two','three','four']";
List<string> arrlist = JsonConvert.DeserializeObject<List<string>>(arr);

 

 

 string arr = "{[a:'one'],[b:'two'],[c:'three'],[d:'four']}";
 List<user> arrlist = JsonConvert.DeserializeObject<List<user>>(arr);

相关文章:

  • 2022-12-23
  • 2021-11-10
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
  • 2021-05-28
  • 2021-09-07
  • 2021-06-04
猜你喜欢
  • 2021-09-19
  • 2021-08-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-21
  • 2021-07-14
相关资源
相似解决方案