Alen Pelin
Results
43
comments of
Alen Pelin
Approved.
As a temporary workaround it may be easier to convert Json5 to Json and use Json.NET.
ORM code sample: ```c# [NotNull] public static T Parse(string json5) where T : class { return (T)GetObject((Json5Object)Json5.Parse(json5), typeof(T)); } [NotNull] private static object GetObject(IEnumerable dict, Type type) { var obj...