Within our existing codebase, we make use of Newtonsoft.Json.JsonWriter
to generate a JavaScript array in the following format:
[["1","zxc"],["2","fifa"],["3","fgh"]].
I am curious about whether Newtonsoft.Json offers any functionalities that could assist with filtering or retrieving specific elements from this array, like accessing ["3","fgh"]
.