I'm currently making an application for WP7 where I'm implementing a currency exchange solution. I could make it with CSV too, but every time I find a snippet which looks alright (and modify it, etc.), I just meet limitations from the C# Silverlight libraries.
So basically, I'm now trying to filter out necessary information from the Google Calculator JSON result.
Basically this is the link: Google Calculator
And this is the result of the JSON: {lhs: "10 U.S. dollars",rhs: "54.2090627 Danish kroner",error: "",icc: true}
Now, if I would like a textBlock to show "10 U.S. Dollars = 54.20 Danish Kroner", how would I have to parse and filter this? I would basically only need the application to go to the website on the click of a button, fetch the information, and return the result formated like above!
I'd suggest you use the WindowsPhone build of JSON.NET. The documentation should be enough to help you figure out how to get the information you need from there.
This is actually pretty easy. I will illustrate making the call to the REST service and parsing the JSON data into a class. Then I think you'll be able to do the string concatenation and display on your own.
Start by adding a reference to the System.ServiceModel.Web assembly, which will give you access to the DataContractJsonSerializer in the System.Runtime.Serialization.Json namespace.
Next, create a class to represent the JSON. Use auto-implemented properties whose names match the JSON returned by the service:
I'll assume you want to get the data when a button is clicked, so here's a small app with a button click handler.
I've written the async callback method in-line as a lambda statement, but you could just as easily write that as a separate method. After the call to have the serializer read the object, the JSON data is now available as an instance of your JSON serialization class (ExchangeRate) so you can work with that object directly, perform data-binding with its properties, and so on.