SchoolSystem.Class.Class C# (CSharp) 메소드

Class() 공개 메소드

public Class ( string textIdentifier ) : System
textIdentifier string
리턴 System
        public Class(string textIdentifier)
        {
            this.TextIdentifier = textIdentifier;
            this.Teachers = new List<Teacher>();
            this.Students = new List<Student>();
        }