Answers for "convert json string to c# object model"

C#
0

string to json c#

JObject json = JObject.Parse(str);
Posted by: Guest on November-25-2020
0

how to convert object in string JSON c#

using System;
using System.Web.Script.Serialization;

public class MyDate
{
    public int year;
    public int month;
    public int day;
}

public class Lad
{
    public string firstName;
    public string lastName;
    public MyDate dateOfBirth;
}

class Program
{
    static void Main()
    {
        var obj = new Lad
        {
            firstName = "Markoff",
            lastName = "Chaney",
            dateOfBirth = new MyDate
            {
                year = 1901,
                month = 4,
                day = 30
            }
        };
        var json = new JavaScriptSerializer().Serialize(obj);
        Console.WriteLine(json);
    }
}
Posted by: Guest on April-27-2020
0

c# convert object to json

var jsonString = JsonConvert.SerializeObject(ObjectModel);
Posted by: Guest on December-23-2020

Code answers related to "convert json string to c# object model"

C# Answers by Framework

Browse Popular Code Answers by Language