I have a string variable that contains The following JSON in it.
[
{
"MeterLookup_TblRefID": 233,
"NetworkLookup_TblRefID": 3,
"Network_Name": "SS-43 SEWA SCADA (Command Center)",
"Longitude": 55.403544,
"Latitude": 25.366666,
"OnOFfStatus": true
},
{
"MeterLookup_TblRefID": 297,
"NetworkLookup_TblRefID": 4,
"Network_Name": "SS-8 MaySaloon",
"Longitude": 55.406274,
"Latitude": 25.360654,
"OnOFfStatus": true
},
{
"MeterLookup_TblRefID": 298,
"NetworkLookup_TblRefID": 5,
"Network_Name": "SS-1 Al Nasserya Driving School",
"Longitude": 55.404669,
"Latitude": 25.367591,
"OnOFfStatus": true
}
]
I want to parse it to a JSON object in unity
. Anyone can please tell me how to do it.