ऑब्जेक्ट क्रमांकन के लिए, आपको नीचे दिए गए कोड को देखना होगा। यहां, हमने अपनी नमूना वस्तु को क्रमबद्ध करने के लिए BinaryFormatter.Serialize (धारा, संदर्भ) विधि का उपयोग किया है।
हमने यहां एक कंस्ट्रक्टर सेट किया है -
public Employee(int id, string name, int salary) { this.id = id; this.name = name; this.salary = salary; }
अब फाइल स्ट्रीम सेट करें -
FileStream fStream = new FileStream("d:\\new.txt", FileMode.OpenOrCreate); BinaryFormatter bFormat = new BinaryFormatter();
कर्मचारी वर्ग की एक वस्तु -
Employee emp = new Employee(001, "Jim", 30000); bFormat.Serialize(fStream, emp);