-4

Hey so this is my JSON string JSON Pic

I want to convert the whole thing into an object and then search the first follower in the follows array.

Thanks for the help if I get some.

Second problem below thanks :)

Juri.B
  • 28
  • 2
  • 9

1 Answers1

0

run the scripts in Package Manager Console :

Install-Package Newtonsoft.Json

after that use this syntax :

List<type> list = JsonConvert.DeserializeObject<List<type>>(json string)
Parsa Karami
  • 702
  • 1
  • 8
  • 30