Logo

Programming-Idioms

History of Idiom 91 > diff from v25 to v26

Edit summary for version 26 by bigwavedave:
New Csharp implementation by user [bigwavedave]

Version 25

2019-09-26, 17:01:19

Version 26

2019-10-07, 23:07:52

Idiom #91 Load JSON file into struct

Read from file data.json and write its content into object x.
Assume the JSON data is suitable for the type of x.

Idiom #91 Load JSON file into struct

Read from file data.json and write its content into object x.
Assume the JSON data is suitable for the type of x.

Imports
using System.IO;
using Newtonsoft.Json.Linq;
Code
JObject x = JObject.Parse(File.ReadAllText("data.json"));
Comments bubble
Requires Newtonsoft.Json.dll