read jsons object form apsettinjgs c# code example
Example 1: reading a json file in c#
JObject o1 = JObject.Parse(File.ReadAllText(@"c:\videogames.json"));
using (StreamReader file = File.OpenText(@"c:\videogames.json"))
using (JsonTextReader reader = new JsonTextReader(file))
{
JObject o2 = (JObject)JToken.ReadFrom(reader);
}
Example 2: how to read json file in C#
public class FormatClass
{
public string JsonName { get; set; }
public string JsonPass { get; set; }
}
public void Read()
{
using (StreamReader Filejosn = new StreamReader("Path.json"))
{
JavaScriptSerializer jss = new JavaScriptSerializer();
var Items = jss.Deserialize<FormatClass>(Filejosn.ReadToEnd());
}
}