I need to parse JSON array in my C# application. Format example of JSON is as follows:
{"time":1440827858965,"event":{
//other arrays
}
This is my code for parsing:
public class Response
{
public MatchEvent event { get; set; } //error is here
}
public class MatchEvent
{
}
I can't create a parameter named "event", beacause it's a keyword.
How can I parse the array or create parameter named "event"?