I faced a problem that I could not find any solution to by google...
JavaScriptSerializer js = new JavaScriptSerializer();
MyClass myObject = js.Deserialize<MyClass>(jsonstring);
What about if an attribute in the json data is called "short"? I cannot make a class like this:
public class MyClass
{
public int A;
public int B;
public int short;
}
So how can I get the jsonstring into an object in an easy way? Very thankful for all help I can get.