반응형 file to class1 [C#] Class 를 file 로 저장/로드하기 (class to file, file to class) Serialize Class 를 File 로 저장/로드 대상 class 일단 아래와 같은 class 가 있고, 이 class 를 file 로 저장하려고 하면, 상단에 [Serializable] 을 붙혀줍니다. [Serializable] // 추가 public class CateInfo { public CateInfo(string name, string link, int depth) { this.name = name; this.link = link; this.depth = depth; } public string name { get; set; } public string link { get; set; } public int depth { get; set; } } using 및 선언 - 사용 할 class에서 // 상단에 u.. 2021. 4. 4. 이전 1 다음 728x90 반응형