I'm about to deserialize a JSON with JavaScriptSerializer
. Unfortunatly, inside the JSON, there is a variable called object
.
And I cannot so write the class such as:
public class FacebookObjectDataData
{
public FacebookObjectDataDataObject object { get; set; }
public FacebookObjectDataData()
{
}
}
but I need that name for deserialize it. How can I use it?