Answers for "r from xmleturn dataset async in c#"

C#
14

api in python

import requests
import json

r = requests.get("URL")
j=r.json()
print(j)
Posted by: Guest on February-19-2020
0

how get data from json in c#

public class JSONResponse
{
    public string status { get; set; }
    public List<Article> articles { get; set; }
}


JSONResponse response = JsonConvert.DeserializeObject<JSONResponse>(myJSON);
Posted by: Guest on April-11-2020

C# Answers by Framework

Browse Popular Code Answers by Language