3
.net core 3.에서 newtonsoft 코드를 System.Text.Json으로 변환 3. JObject.Parse 및 JsonProperty에 해당
newtonsoft 구현을 .net core 3.0의 새로운 JSON 라이브러리로 변환하고 있습니다. 다음 코드가 있습니다 public static bool IsValidJson(string json) { try { JObject.Parse(json); return true; } catch (Exception ex) { Logger.ErrorFormat("Invalid Json Received {0}", json); Logger.Fatal(ex.Message); return false; } } 에 해당하는 것을 찾을 수 없습니다 JObject.Parse(json); 또한 JsonProperty동등한 속성은 무엇입니까? …