using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Collections.ObjectModel;
using System.Text.Json.Serialization;
public int MyProperty { get; set; }
[System.Text.Json.Serialization.JsonConverter(typeof(KnownItemTypeArrayListConverter<Employee>))]
public ArrayList list { get; set; }
public int MyProperty { get; set; }
public string Name { get; set; }
public class KnownItemTypeArrayListConverter<TItem> : JsonConverter<ArrayList>
public override ArrayList Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) =>
new ArrayList(JsonSerializer.Deserialize<List<TItem>>(ref reader, options));
public override void Write(Utf8JsonWriter writer, ArrayList value, JsonSerializerOptions options) =>
JsonSerializer.Serialize(writer, value.Cast<TItem>(), options);
public static void Test()
var e1 = new Employee { MyProperty = 1, Name = "Yash", };
var e2 = new Employee { MyProperty = 1, Name = "Yash", };
var t = new Test { list = new ArrayList { e1, e2 }, };
var options = new JsonSerializerOptions
var text = JsonSerializer.Serialize(t, options);
var t2 = JsonSerializer.Deserialize<Test>(text, options);
Console.WriteLine(JsonSerializer.Serialize(t2, options));
Assert.IsTrue(t2.list.Cast<object>().All(i => i is Employee));
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("System.Text.Json version: " + 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.Location.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];