Load json section to Dictionary C# and preserver insertion order
Json file entry looks like this: settings.json { "MyJson": { "Machine": "machine", "Date": "date", "Time": "time", "Milli": "milli" } } And I am using below code to convert this json to dictionary in C# public static Dictionary<string,string> myDict{ get; private…