Json – C# JObject.Parse treats numbers as int64 instead of uint64
var jobject = JObject.Parse(str); If the given json str has the attribute "seed":11405418255883340000 Error will be thrown: JsonReaderException: JSON integer 11405418255883340000 is too large or small for an Int64 As you'll notice, 11405418255883340000 is too big for int64. But is…