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.Threading.Tasks;
using System.Text.Json.Serialization;
public class InformationObject
public List<string> Tags { get; set; } = new List<string>();
public class InformationObjectConverter : JsonConverter<InformationObject>
public override InformationObject Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
throw new NotImplementedException();
public override void Write(Utf8JsonWriter writer, InformationObject value, JsonSerializerOptions options)
writer.WriteStartObject();
writer.WriteStartObject("InformationObject");
writer.WriteString("Name", "Info Name");
writer.WriteString("Details", "Info Details");
writer.WriteStartArray("Tags");
writer.WriteStringValue("value1");
writer.WriteStringValue("value2");
public static async Task Test()
var model = new InformationObject();
var options = new JsonSerializerOptions
Converters = { new InformationObjectConverter() },
var json = JsonSerializer.Serialize(model, options);
public static async Task Main(string[] args)
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];