0

I have this json object created using the code below:

 var jsonString = JsonConvert.SerializeObject(e, Formatting.Indented);
                    var jObject = JObject.Parse(jsonString);

                    Console.WriteLine(jsonString);

I get this result:

enter image description here

I need to get the value of RSSI only. Can you please show me? Thank you.

Ibanez1408
  • 4,550
  • 10
  • 59
  • 110
  • 1
    Is the code that created this your code? Then why mess with the JSON at all? Don't you have the object `e` which you serialized? – pstrjds Dec 03 '18 at 07:47
  • Do you want to deserialize only one property instead of deserializing whole json string?? or do you want to print value of RSSI? What you are trying to achieve? – Prasad Telkikar Dec 03 '18 at 07:49
  • @pstrjds: I know that. I just want to know how to do it cause I am planning to change it. – Ibanez1408 Dec 03 '18 at 07:51

0 Answers0