Ya no necesitas indagar más por otros sitios ya que has llegado al lugar adecuado, poseemos la respuesta que buscas sin complicaciones.
Ejemplo 1: leyendo un archivo json en C#
JObject o1 = JObject.Parse(File.ReadAllText(@"c:videogames.json"));// read JSON directly from a fileusing(StreamReader file = File.OpenText(@"c:videogames.json"))using(JsonTextReader reader =newJsonTextReader(file))JObject o2 =(JObject)JToken.ReadFrom(reader);
Ejemplo 2: cómo leer un archivo json en 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.publicclassFormatClasspublicstring JsonName get;set;publicstring JsonPass get;set;//Then use the JavaScriptSerializer (from System.Web.Script.Serialization),// in case you don't want any third party DLL like newtonsoft.publicvoidRead()using(StreamReader Filejosn =newStreamReader("Path.json"))JavaScriptSerializer jss =newJavaScriptSerializer();var Items = jss.Deserialize<FormatClass>(Filejosn.ReadToEnd());// Add Code here :)//by ahmed ashraf +201111490105
valoraciones y comentarios
Si conservas algún titubeo y capacidad de aclararse nuestro noticia puedes dejar una reseña y con gusto lo ojearemos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)