Answers for "turn c# verctoir to javascript json"

79

js json to object

var jsonPerson = '{"first_name":"billy", "age":23}';
var personObject = JSON.parse(jsonPerson); //parse json string into JS object
Posted by: Guest on July-23-2019
2

how to convert object in string JSON c#

var json = new JavaScriptSerializer().Serialize(obj);
Posted by: Guest on April-27-2020
6

js string to json

var obj = JSON.parse("{no:'u',my:'sql'}");//returnes {no:'u',my:'sql'}
Posted by: Guest on April-08-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

Code answers related to "turn c# verctoir to javascript json"

Code answers related to "Javascript"

Browse Popular Code Answers by Language