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 class JsonExtensions
public static T DeserializeAnonymousType<T>(TextReader textReader, T anonymousTypeObject, JsonSerializerSettings settings = null)
return (T)JsonSerializer.CreateDefault(settings).Deserialize(textReader, typeof(T));
public static void Test()
using (var streamReader = new StreamReader(new MemoryStream(Encoding.UTF8.GetBytes(GetJson()))))
var root = JsonExtensions.DeserializeAnonymousType(streamReader,
new { success = default(bool), list = default(DataTable) });
Console.WriteLine("Deserialized {0}:", dt.GetType());
Console.WriteLine(JsonConvert.SerializeObject(dt, Formatting.Indented));
""description"": ""GROP : 99 DETL : ANT SUBS : 00"",
""create_user"": ""SYSTEM"",
""create_time"": ""2019-04-24T17:58:58.000+0000"",
""description"": ""GROP : 99 DETL : ANT SUBS : 00"",
""create_user"": ""SYSTEM"",
""create_time"": ""2019-04-24T17:58:58.000+0000"",
""description"": ""GROP : 99 DETL : ANT SUBS : 00"",
""create_user"": ""SYSTEM"",
""create_time"": ""2019-04-24T17:58:58.000+0000"",
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];