객체 직렬화를 위해서는 다음 코드를 참고해야 합니다. 여기서는 BinaryFormatter.Serialize(stream, reference) 메서드를 사용하여 예제 개체를 직렬화합니다.
여기서 생성자를 설정했습니다. -
public Employee(int id, string name, int salary) { this.id = id; this.name = name; this.salary = salary; }
이제 파일 스트림을 설정합니다. -
FileStream fStream = new FileStream("d:\ew.txt", FileMode.OpenOrCreate); BinaryFormatter bFormat = new BinaryFormatter();
Employee 클래스의 개체 -
Employee emp = new Employee(001, "Jim", 30000); bFormat.Serialize(fStream, emp);
위 내용은 C# 개체 직렬화의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!