シリアル化を扱う場合、クラスの最初(名前空間の後、クラスの前)で[Serializable()]を使用することはどのように重要ですか?
私は次のようにサンプルを見ています:
namespace MyObjSerial
{
[Serializable()] //Set this attribute to all the classes that you define to be serialized
public class Employee : ISerializable
{
public int EmpId;
public string EmpName;
//Default constructor
public Employee()
{
EmpId = 0;
EmpName = null;
}
}
}