-2
我想將我的列表> 轉換爲JSON字符串。有誰知道如何在C#中實現這一點?C#List <dictionary> To Json
我想將我的列表> 轉換爲JSON字符串。有誰知道如何在C#中實現這一點?C#List <dictionary> To Json
使用JSON.Net
using Newtonsoft.Json;
List<Dictionary<string, string>> testDictionary = new List<Dictionary<string, string>()>();
string json = JsonConvert.SerializeObject(testDictionary);
的
可能重複[如何轉換C#泛型列表使用json.net?](http://stackoverflow.com/questions/3482261/how-to-convert-c到JSON -sharp泛型列表到JSON-使用JSON的網) – Shai 2012-08-06 06:32:01