serialize 썸네일형 리스트형 C# 파일 직렬화 - BinaryFormatter 귀찮아서 풀소스로 설명 using System;using System.IO;using System.Collections;using System.Runtime.Serialization.Formatters.Binary;using System.Runtime.Serialization; public class App{ [STAThread] static void Serialize() { // 사용할 데이터로는 해쉬테이블을 사용한다. 정적데이터를 사용할때에는 // 그냥 파일스트림에 집어넣어도 되지만, // 동적데이터나 컨테이너를 사용할 경우 직렬화를 반드시 해줘야하기 때문이다. Hashtable addresses = new Hashtable(); addresses.Add("Jeff", "123 Main Street,.. 더보기 이전 1 다음