C# object serialization


For object serialization, you need to refer the below code. Here, we have use the BinaryFormatter.Serialize (stream, reference) method to serialize our sample object.

We have set a constructor here −

public Employee(int id, string name, int salary) {
   this.id = id;
   this.name = name;
   this.salary = salary;
}

Now set the file stream −

FileStream fStream = new FileStream("d:\
ew.txt", FileMode.OpenOrCreate); BinaryFormatter bFormat = new BinaryFormatter();

An object of the Employee class −

Employee emp = new Employee(001, "Jim", 30000);
bFormat.Serialize(fStream, emp);

Updated on: 21-Jun-2020

142 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements