C#프로그래밍/복습 5

JSON 복습1

App using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; using Newtonsoft; using Newtonsoft.Json; namespace Game2048 { internal class App { //생성자 public App() { //게임 시작 전 게임에서 사용할 데이터 로드 DataManager.instance.LoadItemDatas(); if(File.Exists("./item_info.json")) // 있다면 기존유저 { string json = File.R..