using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Collections.ObjectModel;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
[JsonObject(IsReference = true)]
public class ReferenceTesting
public List<Scenario> scenarios = new List<Scenario>();
private Dictionary<Scenario, float> _Dict = new Dictionary<Scenario, float>();
public KeyValuePair<Scenario, float> [] SerializedDict
get { return _Dict.ToArray(); }
set { _Dict = value.ToDictionary(x => x.Key, x => x.Value); }
public ReferenceTesting() : this(0) { }
public ReferenceTesting(int number = 0)
for (int i = 0; i < number; i++)
Scenario s1 = new Scenario();
public override string ToString()
for (int i = 0; i < scenarios.Count; i++)
Scenario scenario = scenarios[i];
foreach (KeyValuePair<Scenario, float> scenario in SerializedDict)
s += $"Key: {scenario.Key}, Value: {scenario.Value} \n";
public static void Test()
var test = new ReferenceTesting(3);
foreach (var item in test.SerializedDict.Select(p => p.Key))
Assert.IsTrue(test.scenarios.Contains(item));
var json = JsonConvert.SerializeObject(test, Formatting.Indented);
var test2 = JsonConvert.DeserializeAnonymousType(json, test);
Console.WriteLine("Deserialized {0}:", test2.GetType());
Console.WriteLine(test2);
foreach (var item in test2.SerializedDict.Select(p => p.Key))
Assert.IsTrue(test2.scenarios.Contains(item));
Assert.IsTrue(test.SerializedDict.Length == test2.SerializedDict.Length);
Assert.IsTrue(test.scenarios.Count == test2.scenarios.Count);
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("{0} version: {1}", typeof(JsonSerializer).Assembly.GetName().Name, typeof(JsonSerializer).Assembly.FullName);
Console.WriteLine("Failed with unhandled exception: ");
public static string GetNetCoreVersion()
var assembly = typeof(System.Runtime.GCSettings).GetTypeInfo().Assembly;
var assemblyPath = assembly.CodeBase.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];