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;
public static void Test()
static void TestJToken(string _pid)
var pid = JToken.Parse(_pid).SelectToken("[0].person_id")?.ToString();
Console.WriteLine("pid = {0}", pid);
Assert.IsTrue(pid == "1141");
static void TestJArray(string _pid)
var pid = JArray.Parse(_pid)[0]?["person_id"]?.ToString();
Console.WriteLine("pid = {0}", pid);
Assert.IsTrue(pid == "1141");
var json = @"[{""person_id"":1141,
""person_fname"":""Tony"",
""person_lname"":""Stark"",
""person_initials"":""IM"",
""person_mono"":""1234567890"",
""person_pemail"":""tonys@gmail.com"",
""db_tstamp"":""2020-01-08T22:03:08.9659938""}]
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("Json.NET 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.CodeBase.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];