I have a string with a formatting like this:
[["addr","field"],["[email protected]",1000],["[email protected]",1001],["[email protected]",1002],["67656x3434",100],["99999",511],["79898",400],["545654",561],["7979",200],["6776767",201],["4656",300],["88888",5000]]
I want to get the addre (value) base on the field (key). I read some article about how to get value from a JSON string at:
How to read this json string using c#?
But it does not work for me.
Any ideas, guys?