Estoy convirtiendo mi implementación newtonsoft a una nueva biblioteca JSON en .net core 3.0. Tengo el siguiente código public static bool IsValidJson(string json) { try { JObject.Parse(json); return true; } catch (Exception ex) { Logger.ErrorFormat("Invalid Json Received {0}", json);...
12
Convertir código newtonsoft a System.Text.Json en .net core 3. ¿Qué es equivalente a JObject.Parse y JsonProperty?