After I paste the following URL to the web browser and it returned an JSON
The Link is:
http://rate-exchange.appspot.com/currency?from=USD&to=EUR&q=1
The Return JSON is:
{"to": "EUR", "rate": 0.73203399999999996, "from": "USD", "v": 0.73203399999999996}
Just would like to know how I can decode this JSON via C# because I want to get the USD to EUR currency Rate.
Please help