Serializable Class
问题 How I can make Student class serializable? I'm reading this article but I do not know what is the right approach if I would implement it in the below scenario. public class Student { private string _studentNumber; private string _lastName; private string _firtName; private List<Subject> _subjects; public Student() { } public string StudentNumber { get { return _studentNumber; } set { _studentNumber = value; } } public string LastName { get { return _lastName; } set { _lastName = value; } }