Click here to Skip to main content
Click here to Skip to main content

Converting PHP arrays to a C# Dictionary

By , 21 Dec 2011
 

Removed the previous code, it was a totally bad idea and awful code.  Now I'm passing the Json array to Silverlight using json_encode() and using Newtonsoft.Json library with the following simple function: 

     

  public Dictionary<string, object> Parse(string array)
        { 
            Dictionary<string, object> result = new Dictionary<string, object>();
            Newtonsoft.Json.Linq.JObject obj = (Newtonsoft.Json.Linq.JObject)JsonConvert.DeserializeObject(array);
            foreach (KeyValuePair<string, Newtonsoft.Json.Linq.JToken> kvp in obj)
            {
                if (kvp.Value.ToString().Contains('{'))
                {
                    result.Add(kvp.Key, Parse(kvp.Value.ToString().Replace("[", "").Replace("]", "")));
                }
                else
                {
                    result.Add(kvp.Key, kvp.Value.ToString());
                }
            }
            return result;
        } 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

taralex
Technical Writer
Unknown
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionUnable to cast object of type 'Newtonsoft.Json.Linq.JObject' to type 'Newtonsoft.json.linq.jarray'memberreal-insanity24 Dec '11 - 11:24 
AnswerRe: Unable to cast object of type 'Newtonsoft.Json.Linq.JObject' to type 'Newtonsoft.json.linq.jarray'membertaralex3 Jan '12 - 2:31 
GeneralRe: Unable to cast object of type 'Newtonsoft.Json.Linq.JObject' to type 'Newtonsoft.json.linq.jarray'memberreal-insanity3 Jan '12 - 3:03 
QuestionCould't you just use jsonencode?memberRedAnthrax_30 Nov '11 - 12:10 
AnswerRe: Could't you just use jsonencode?membertaralex30 Nov '11 - 15:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 21 Dec 2011
Article Copyright 2011 by taralex
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid