Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to parse the JSON Array value in C# (Windows phone 7)?

I'm working in WP7. I need to parse JSON array value in to list box. Somebody said, use Serializer and Deserializer but i dont know how to parse those values in to combo box or list box using serilizer and deserializer?

like image 510
selladurai Avatar asked Dec 22 '22 20:12

selladurai


1 Answers

I would suggest using JSON.NET - I've used that with no problems in Windows Phone 7.

Don't focus on the list box to start with - focus on converting from JSON to your own type. Then separately deal with how to show a collection of objects of that type in your list box.

like image 170
Jon Skeet Avatar answered Jan 07 '23 23:01

Jon Skeet