1
以下是我想要使用本地JavaScript支持反序列化爲Dictionary的JSON。 。將JSON數據反序列化爲字典時出錯<string,string>
string data = "{"Symptom":[true,true,true],"Action":[true,true],"AllArea":true}";
但是,當我嘗試使用以下代碼
字典的值進行反序列化=新System.Web.Script.Serialization.JavaScriptSerializer()反序列>(數據);
它給了我一個錯誤,說明 "Type 'System.String' is not supported for deserialization of an array"
我使用.NET Framework 3.5。請幫我完成這件事。