remark
: JsonConvert
String 을 Json 모형으로 보기 좋게 하기 예제
1 2 3 |
JsonConvert.SerializeObject(JsonConvert.DeserializeObject<ModelRq>(StringRq), Newtonsoft.Json.Formatting.Indented); |
Json Model을 Json 모형으로 보기 좋게 하기 예제
1 2 3 |
JsonConvert.SerializeObject(ModelRs, Newtonsoft.Json.Formatting.Indented); |