Answers for "receive json in c#"

C#
6

c# get value from json object

using System;
using Newtonsoft.Json.Linq;

namespace testClient
{
    class Program
    {
        static void Main()
        {
            var myJsonString = "{report: {Id: \"aaakkj98898983\"}}";
            var jo = JObject.Parse(myJsonString);
            var id = jo["report"]["Id"].ToString();
            Console.WriteLine(id);
            Console.Read();
        }
    }
}
Posted by: Guest on June-11-2021
25

object to json c#

using Newtonsoft.Json;

var jsonString = JsonConvert.SerializeObject(obj);
Posted by: Guest on May-29-2020

Code answers related to "receive json in c#"

C# Answers by Framework

Browse Popular Code Answers by Language