79347480

Date: 2025-01-11 03:23:41
Score: 0.5
Natty:
Report link

I just converted jsonNode result to lower case and now it does not matter what case the key name is in.

Using reader As New StreamReader(ext_manifest)
    Do Until reader.EndOfStream
        node_data = reader.ReadToEnd
    Loop
End Using

       
Dim node As JsonNode = JsonNode.Parse(node_data.tolower)
first_name = node("name").ToString
msgbox(first_name)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: rerat