I have an app written in C# with version 2.0 of the .NET Framework. Unfortunately, I do NOT have the option of updating to a newer version of .NET.
My app is calling a webservice that returns some JSON. The returned JSON looks something like the following:
{"Status":1, "ID":"12345"}
I need parse this string and get the respective Status and ID values. If I was using a later version of the .NET framework, I would use the System.Json namespace. However, I do not have that luxury. I have no idea how to parse this response.
Does anyone know how I can parse this with C# in .NET 2.0?