how to read json data from json file in c# code example

Example 1: c# read json file into object

// read file into a string and deserialize JSON to a type
Movie movie1 = JsonConvert.DeserializeObject<Movie>(File.ReadAllText(@"c:\movie.json"));

// deserialize JSON directly from a file
using (StreamReader file = File.OpenText(@"c:\movie.json"))
{
    JsonSerializer serializer = new JsonSerializer();
    Movie movie2 = (Movie)serializer.Deserialize(file, typeof(Movie));
}

Example 2: how to read json file in C#

//For any of the JSON parse, use the website 
//http://json2csharp.com/ 
//(easiest way) to convert your JSON into 
//C# class to deserialize your JSON into C# object.

public class FormatClass
{
	public string JsonName { get; set; }      
	public string JsonPass { get; set; }      
}
//Then use the JavaScriptSerializer (from System.Web.Script.Serialization),
// in case you don't want any third party DLL like newtonsoft.
public void Read()
{
  	using (StreamReader Filejosn = new StreamReader("Path.json"))
	{
   		JavaScriptSerializer jss = new JavaScriptSerializer();
   		var Items = jss.Deserialize<FormatClass>(Filejosn.ReadToEnd());
  		// Add Code here :)
	}
}
//by ahmed ashraf +201111490105