+ 4
Serialization
What needs to be changed for serialization to succeed? https://code.sololearn.com/cZXhJ3SPZy8H/#cs
2 Respostas
+ 2
You should mark Student, StudenName and Date structures with [Serializable] attribute.
There are also missing using statements:
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
+ 1
gambler thanks a lot)