InheritanceAndPolymorphism.LocalCourse.LocalCourse C# (CSharp) Method

LocalCourse() public method

public LocalCourse ( string name, string teacher = "", IList students = null ) : System
name string
teacher string
students IList
return System
        public LocalCourse(string name, string teacher = "", IList<string> students = null)
            : base(name, teacher, students)
        {
            return;
        }