I have a Json file as shown below. I want to convert only the option node in the JSON file into a C# ListItemCollection object
ASP.net File:
   var path = Server.MapPath(@"~/json.json");
    using (StreamReader r = new StreamReader(path,false))
    {                      
        string json = r.ReadToEnd();
        dynamic arr = JsonConvert.DeserializeObject(json);
        ListItemCollection licRB = new ListItemCollection();  
        licRB = arr.AnswerRadioButton.option;<<-- run time error is produced here 
    }
JSON File:
{   "FormTitle": "This is Form Title from JSON",
  "TitleQuestion1": "This is the Title of Question 1",
  "TextQuestion1": "1- This is the text of Quextion Number 1",
  "AnswerRadioButton": {
"visible": "true",
"title": "Radio Button Title",
"FieldsetRBStyle": { "border": "1px" },
"option" : [
  {
    "text": "text1",
    "value": "v1",
    "checked": "false"
  },
  {
    "text": "text2",
    "value": "v2",
    "checked": "true"
  },
  {
    "text": "text3",
    "value": "v3",
    "checked": "false"
  },
  {
    "text": "text4",
    "value": "v4",
    "checked": "true"
  }
]  }}
 
    