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>();
        }