Parsing json array in c#
Hello Friends,I am getting following data from server. As data is coming from server in JSON format. I need to decode it in C# by storing in a string. I need to decode the same data as I am not able to manipulate it because I am getting it from server.
[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter", "lastName":"Jones"}
].
Please let help me to decode on the same.
Thanks in advance
Regards
Navneet