using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Collections.ObjectModel;
public static void Test()
var array = new [] {"a", "b", "c", "d", "e", "f"};
var dictionary = array.AsPairs().ToDictionary(t => t.Key, t => t.Value);
var newJson = JsonSerializer.Serialize(dictionary, new JsonSerializerOptions { WriteIndented = true });
Console.WriteLine(newJson);
public static class EnumerableExtensions
public static IEnumerable<(T Key, T Value)> AsPairs<T>(this IEnumerable<T> enumerable)
return AsPairsEnumerator(enumerable ?? throw new ArgumentNullException());
static IEnumerable<(T key, T value)> AsPairsEnumerator(IEnumerable<T> enumerable)
foreach (var item in enumerable)
yield return (key, item);
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.Location.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];