V
V
Valentine2020-11-11 17:44:15
JSON
Valentine, 2020-11-11 17:44:15

How do I convert my JSON to a collection?

Here is the code for getting data in JSON format from the server:

string result;
            var httpWebRequest = (HttpWebRequest)WebRequest.Create(url);
            httpWebRequest.ContentType = @"application/json;charset=UTF-8";
            httpWebRequest.Method = "GET";
            var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse();
            using (var streamReader = new StreamReader(httpResponse.GetResponseStream(), Encoding.UTF8))
            {
                result = streamReader.ReadToEnd();
            }

After executing it, I get data in this format:
[
    [
        1,
        "News1",
        "Здесь текст 1",
        1602334730,
        "/root"
    ],
    [
        2,
        "News2",
        "Здесь текст 2",
        1602335010,
        "None"
    ],
    [
        3,
        "News2",
        "Здесь текст 3",
        1603464032,
        "/root"
    ]
]

How can I add this data to some collection?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander Ananiev, 2020-11-11
@val_gr

https://stackoverflow.com/questions/1207731/how-ca...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question