■ JObject 클래스를 사용해 JSON 문자열을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using System.IO; using Newtonsoft.Json.Linq; JObject jObject = new JObject ( new JProperty("Halo" , 9 ), new JProperty("Starcraft" , 9 ), new JProperty("Call of Duty", 7.5) ); File.WriteAllText(@"d:\sample.json", jObject.ToString()); |
▶ sample.json
1 2 3 4 5 6 7 |
{ "Halo": 9, "Starcraft": 9, "Call of Duty": 7.5 } |
※ Visual Studio NuGet 패키지 관리에서 "Newtonsoft.Json"을 설치한다.